Remove unused stdio.h includes

llvm-svn: 188626
This commit is contained in:
Dmitri Gribenko 2013-08-18 08:29:51 +00:00
parent 96933de7f5
commit 8b2a3d1fea
6 changed files with 1 additions and 8 deletions

View File

@ -21,7 +21,6 @@
#include "llvm/MC/MCAsmInfo.h" #include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCExpr.h" #include "llvm/MC/MCExpr.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
#include <cstdio>
using namespace llvm; using namespace llvm;

View File

@ -10,7 +10,7 @@
// This file contains the Mips16 implementation of the TargetInstrInfo class. // This file contains the Mips16 implementation of the TargetInstrInfo class.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include <stdio.h>
#include "Mips16InstrInfo.h" #include "Mips16InstrInfo.h"
#include "InstPrinter/MipsInstPrinter.h" #include "InstPrinter/MipsInstPrinter.h"
#include "MipsMachineFunction.h" #include "MipsMachineFunction.h"
@ -473,7 +473,6 @@ const MipsInstrInfo *llvm::createMips16InstrInfo(MipsTargetMachine &TM) {
return new Mips16InstrInfo(TM); return new Mips16InstrInfo(TM);
} }
#include <stdio.h>
bool Mips16InstrInfo::validImmediate(unsigned Opcode, unsigned Reg, bool Mips16InstrInfo::validImmediate(unsigned Opcode, unsigned Reg,
int64_t Amount) { int64_t Amount) {
switch (Opcode) { switch (Opcode) {
@ -493,6 +492,5 @@ bool Mips16InstrInfo::validImmediate(unsigned Opcode, unsigned Reg,
return isInt<16>(Amount); return isInt<16>(Amount);
return isInt<15>(Amount); return isInt<15>(Amount);
} }
printf("Unexpected opcode %i \n", Opcode);
llvm_unreachable("unexpected Opcode in validImmediate"); llvm_unreachable("unexpected Opcode in validImmediate");
} }

View File

@ -21,7 +21,6 @@
#include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/CodeGen/MachineRegisterInfo.h"
#include <cstdio>
using namespace llvm; using namespace llvm;

View File

@ -13,7 +13,6 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "AMDGPUSubtarget.h" #include "AMDGPUSubtarget.h"
#include <stdio.h>
using namespace llvm; using namespace llvm;

View File

@ -24,7 +24,6 @@
#include "llvm/MC/MCRegisterInfo.h" #include "llvm/MC/MCRegisterInfo.h"
#include "llvm/MC/MCSubtargetInfo.h" #include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
#include <stdio.h>
using namespace llvm; using namespace llvm;

View File

@ -19,7 +19,6 @@
#include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/MC/MCInstrDesc.h" #include "llvm/MC/MCInstrDesc.h"
#include <stdio.h>
using namespace llvm; using namespace llvm;