Add explicit #includes of <iostream>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25509 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-01-22 22:53:01 +00:00
parent 0f9f8c3759
commit 86a5484079
17 changed files with 19 additions and 6 deletions

View File

@ -24,6 +24,7 @@
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Timer.h"
#include <iostream>
// FIXME: This should eventually be a FunctionPass that is automatically
// aggregated into a Pass.

View File

@ -20,6 +20,7 @@
#include "llvm/Analysis/Passes.h"
#include "llvm/Module.h"
#include "llvm/Support/Debug.h"
#include <iostream>
using namespace llvm;
namespace {

View File

@ -19,6 +19,7 @@
#include "llvm/Support/FileUtilities.h"
#include <fstream>
#include <sstream>
#include <iostream>
using namespace llvm;
ToolExecutionError::~ToolExecutionError() throw() { }

View File

@ -22,6 +22,7 @@
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/Passes.h"
#include "llvm/Support/Debug.h"
#include <iostream>
using namespace llvm;
namespace {

View File

@ -27,6 +27,7 @@
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/InstVisitor.h"
#include "llvm/Support/CFG.h"
#include <iostream>
using namespace llvm;
namespace {

View File

@ -27,6 +27,7 @@
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/InstVisitor.h"
#include "llvm/Support/CFG.h"
#include <iostream>
using namespace llvm;
namespace {

View File

@ -17,7 +17,7 @@
#include "llvm/Target/TargetSchedInfo.h"
#include "../SparcV9Internals.h"
#include "llvm/CodeGen/MachineInstr.h"
#include <iostream>
using namespace llvm;
//Check if all resources are free

View File

@ -17,7 +17,7 @@
#include "llvm/Target/TargetSchedInfo.h"
#include "../SparcV9Internals.h"
#include "llvm/CodeGen/MachineInstr.h"
#include <iostream>
using namespace llvm;
//Check if all resources are free

View File

@ -13,8 +13,8 @@
// is provided, a conservative approach of adding dependencies between all
// loads and stores is taken.
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "ModuloSched"
#define DEBUG_TYPE "ModuloSched"
#include "MSchedGraph.h"
#include "../SparcV9RegisterInfo.h"
#include "../MachineCodeForInstruction.h"
@ -28,7 +28,7 @@
#include <cstdlib>
#include <algorithm>
#include <set>
#include <iostream>
using namespace llvm;
//MSchedGraphNode constructor

View File

@ -13,8 +13,8 @@
// is provided, a conservative approach of adding dependencies between all
// loads and stores is taken.
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "ModuloSchedSB"
#define DEBUG_TYPE "ModuloSchedSB"
#include "MSchedGraphSB.h"
#include "../SparcV9RegisterInfo.h"
#include "../MachineCodeForInstruction.h"
@ -30,7 +30,7 @@
#include <set>
#include "llvm/Target/TargetSchedInfo.h"
#include "../SparcV9Internals.h"
#include <iostream>
using namespace llvm;
//MSchedGraphSBNode constructor

View File

@ -36,6 +36,7 @@
#include "SparcV9CodeEmitter.h"
#include "SparcV9Relocations.h"
#include "MachineFunctionInfo.h"
#include <iostream>
using namespace llvm;
bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,

View File

@ -17,6 +17,7 @@
#include "llvm/CodeGen/MachineCodeEmitter.h"
#include "llvm/Config/alloca.h"
#include "llvm/Support/Debug.h"
#include <iostream>
using namespace llvm;
/// JITCompilerFunction - This contains the address of the JIT function used to

View File

@ -19,6 +19,7 @@
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/Debug.h"
#include <algorithm>
#include <iostream>
using namespace llvm;
static bool OperandConvertibleToType(User *U, Value *V, const Type *Ty,

View File

@ -23,6 +23,7 @@
#include "ProfilingUtils.h"
#include "llvm/Support/Debug.h"
#include <set>
#include <iostream>
using namespace llvm;
namespace {

View File

@ -29,6 +29,7 @@
#include "llvm/ADT/StringExtras.h"
#include <algorithm>
#include <set>
#include <iostream>
using namespace llvm;
// Provide a command-line option to aggregate function arguments into a struct

View File

@ -23,6 +23,7 @@
#include <functional>
#include <set>
#include <map>
#include <iostream>
using namespace llvm;
/// SafeToMergeTerminators - Return true if it is safe to merge these two

View File

@ -19,6 +19,7 @@
#include "llvm/Support/FileUtilities.h"
#include <fstream>
#include <sstream>
#include <iostream>
using namespace llvm;
ToolExecutionError::~ToolExecutionError() throw() { }