diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-03-17 15:38:16 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-03-17 15:38:16 +0000 | 
| commit | 7b9020a059133f136eddcf269a400b2e166c2789 (patch) | |
| tree | ec4f48753407a22e0c37da45197081ea4c5dbef8 /llvm/lib/Target | |
| parent | 5251047abd0750dac6283f736761d7d75911fc0f (diff) | |
| download | bcm5719-llvm-7b9020a059133f136eddcf269a400b2e166c2789.tar.gz bcm5719-llvm-7b9020a059133f136eddcf269a400b2e166c2789.zip | |
Fix the missing symbols problem Bill was hitting.  Patch contributed by
Bill Wendling!!
llvm-svn: 20649
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Target/SparcV9/RegAlloc/LiveRangeInfo.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Target/SparcV9/SparcV9TmpInstr.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Target/X86/X86AsmPrinter.cpp | 1 | 
4 files changed, 4 insertions, 0 deletions
| diff --git a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp index 500f8b1ff56..4d4fb94ded2 100644 --- a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp +++ b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp @@ -15,6 +15,7 @@  #include "Alpha.h"  #include "AlphaInstrInfo.h"  #include "llvm/Module.h" +#include "llvm/Type.h"  #include "llvm/Assembly/Writer.h"  #include "llvm/CodeGen/MachineConstantPool.h"  #include "llvm/CodeGen/ValueTypes.h" diff --git a/llvm/lib/Target/SparcV9/RegAlloc/LiveRangeInfo.cpp b/llvm/lib/Target/SparcV9/RegAlloc/LiveRangeInfo.cpp index 6da3e0f524e..9a89b1354b9 100644 --- a/llvm/lib/Target/SparcV9/RegAlloc/LiveRangeInfo.cpp +++ b/llvm/lib/Target/SparcV9/RegAlloc/LiveRangeInfo.cpp @@ -16,6 +16,7 @@  #include "RegAllocCommon.h"  #include "RegClass.h"  #include "llvm/Function.h" +#include "llvm/Type.h"  #include "llvm/CodeGen/MachineInstr.h"  #include "llvm/CodeGen/MachineFunction.h"  #include "llvm/Target/TargetMachine.h" diff --git a/llvm/lib/Target/SparcV9/SparcV9TmpInstr.cpp b/llvm/lib/Target/SparcV9/SparcV9TmpInstr.cpp index e2577870547..5b954b426bd 100644 --- a/llvm/lib/Target/SparcV9/SparcV9TmpInstr.cpp +++ b/llvm/lib/Target/SparcV9/SparcV9TmpInstr.cpp @@ -13,6 +13,7 @@  //===----------------------------------------------------------------------===//  #include "SparcV9TmpInstr.h" +#include "llvm/Type.h"  #include "llvm/Support/LeakDetector.h"  using namespace llvm; diff --git a/llvm/lib/Target/X86/X86AsmPrinter.cpp b/llvm/lib/Target/X86/X86AsmPrinter.cpp index 24e92ed3053..e5d48315078 100644 --- a/llvm/lib/Target/X86/X86AsmPrinter.cpp +++ b/llvm/lib/Target/X86/X86AsmPrinter.cpp @@ -17,6 +17,7 @@  #include "X86.h"  #include "X86TargetMachine.h"  #include "llvm/Module.h" +#include "llvm/Type.h"  #include "llvm/Assembly/Writer.h"  #include "llvm/CodeGen/AsmPrinter.h"  #include "llvm/CodeGen/MachineConstantPool.h" | 

