diff options
| author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-08-17 12:56:54 +0000 |
|---|---|---|
| committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-08-17 12:56:54 +0000 |
| commit | bcef14d2e4b2c92e767007a3f474985ba1a4754f (patch) | |
| tree | 13759f0625e5bc14dcd2d4fbc0238066795e0b32 /llvm/lib/CodeGen/AsmPrinter.cpp | |
| parent | dbe06d3b69cab1ae6e708f5eca69cb0538a09842 (diff) | |
| download | bcm5719-llvm-bcef14d2e4b2c92e767007a3f474985ba1a4754f.tar.gz bcm5719-llvm-bcef14d2e4b2c92e767007a3f474985ba1a4754f.zip | |
Factor GC metadata table assembly generation out of Collector in preparation for splitting AsmPrinter into its own library.
llvm-svn: 54881
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index 3b2dcb31d29..de31840d703 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter.cpp @@ -16,9 +16,9 @@ #include "llvm/DerivedTypes.h" #include "llvm/Constants.h" #include "llvm/Module.h" -#include "llvm/CodeGen/Collector.h" -#include "llvm/CodeGen/CollectorMetadata.h" -#include "llvm/CodeGen/Collectors.h" +#include "llvm/CodeGen/GCStrategy.h" +#include "llvm/CodeGen/GCMetadata.h" +#include "llvm/CodeGen/GCs.h" #include "llvm/CodeGen/MachineConstantPool.h" #include "llvm/CodeGen/MachineJumpTableInfo.h" #include "llvm/CodeGen/MachineModuleInfo.h" |

