diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-01 22:21:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-01 22:21:34 +0000 |
commit | 1007f033d4dd6636f62a9417d1d844fb52ddedb6 (patch) | |
tree | 217d382399aaff658eb6192fae350e209b926e85 | |
parent | 5a0c4c6aa541ee3c73e063481ff7864115068abd (diff) | |
download | bcm5719-llvm-1007f033d4dd6636f62a9417d1d844fb52ddedb6.tar.gz bcm5719-llvm-1007f033d4dd6636f62a9417d1d844fb52ddedb6.zip |
Move DEBUG to Debug.h
llvm-svn: 7497
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLocal.cpp | 3 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocSimple.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Target/X86/FloatingPoint.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Target/X86/X86CodeEmitter.cpp | 1 |
4 files changed, 5 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLocal.cpp b/llvm/lib/CodeGen/RegAllocLocal.cpp index fed05b7dbbc..1338b821a18 100644 --- a/llvm/lib/CodeGen/RegAllocLocal.cpp +++ b/llvm/lib/CodeGen/RegAllocLocal.cpp @@ -13,8 +13,9 @@ #include "llvm/CodeGen/LiveVariables.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetMachine.h" -#include "Support/Statistic.h" #include "Support/CommandLine.h" +#include "Support/Debug.h" +#include "Support/Statistic.h" #include <iostream> namespace { diff --git a/llvm/lib/CodeGen/RegAllocSimple.cpp b/llvm/lib/CodeGen/RegAllocSimple.cpp index 31b637496cf..4d286d9952e 100644 --- a/llvm/lib/CodeGen/RegAllocSimple.cpp +++ b/llvm/lib/CodeGen/RegAllocSimple.cpp @@ -14,6 +14,7 @@ #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetMachine.h" +#include "Support/Debug.h" #include "Support/Statistic.h" #include <iostream> diff --git a/llvm/lib/Target/X86/FloatingPoint.cpp b/llvm/lib/Target/X86/FloatingPoint.cpp index 8d242b2e063..779b76dfe8d 100644 --- a/llvm/lib/Target/X86/FloatingPoint.cpp +++ b/llvm/lib/Target/X86/FloatingPoint.cpp @@ -12,6 +12,7 @@ #include "llvm/CodeGen/LiveVariables.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetMachine.h" +#include "Support/Debug.h" #include "Support/Statistic.h" #include <algorithm> #include <iostream> diff --git a/llvm/lib/Target/X86/X86CodeEmitter.cpp b/llvm/lib/Target/X86/X86CodeEmitter.cpp index 5ad5f1f074e..cb38af65e26 100644 --- a/llvm/lib/Target/X86/X86CodeEmitter.cpp +++ b/llvm/lib/Target/X86/X86CodeEmitter.cpp @@ -12,6 +12,7 @@ #include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/Value.h" +#include "Support/Debug.h" #include "Support/Statistic.h" #include "Config/alloca.h" |