diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-18 23:12:06 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-18 23:12:06 +0000 |
commit | 0f4c581c4ab490d1da50bd6e31d9e89e0068fa79 (patch) | |
tree | 8c7d6bfa2404b381f99d7a441dc9ba23a591a996 /llvm/lib/Target/PIC16 | |
parent | 1b2cd9aca92ea740a052ec9a08433740e9bfac29 (diff) | |
download | bcm5719-llvm-0f4c581c4ab490d1da50bd6e31d9e89e0068fa79.tar.gz bcm5719-llvm-0f4c581c4ab490d1da50bd6e31d9e89e0068fa79.zip |
Put code that generates debug labels into TableGen so that it can be used by
everyone.
llvm-svn: 64978
Diffstat (limited to 'llvm/lib/Target/PIC16')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp index 1f3c4345646..8e80eeabe2d 100644 --- a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp +++ b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp @@ -14,12 +14,13 @@ #include "PIC16AsmPrinter.h" #include "PIC16TargetAsmInfo.h" -#include "llvm/Support/raw_ostream.h" -#include "llvm/Support/Mangler.h" +#include "llvm/DerivedTypes.h" #include "llvm/Function.h" #include "llvm/Module.h" +#include "llvm/CodeGen/DwarfWriter.h" #include "llvm/CodeGen/MachineFrameInfo.h" -#include "llvm/DerivedTypes.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/Mangler.h" using namespace llvm; |