diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-04 19:09:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-04 19:09:29 +0000 |
commit | 9efd11893808814b4a6ba7a4379ab890425a9ac9 (patch) | |
tree | 55a48ab42ce069036da6933bf18bb285e2379a9f /llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp | |
parent | 2b40a207bc23568e396e32db02d465329e1659e5 (diff) | |
download | bcm5719-llvm-9efd11893808814b4a6ba7a4379ab890425a9ac9.tar.gz bcm5719-llvm-9efd11893808814b4a6ba7a4379ab890425a9ac9.zip |
move uleb/sleb printing into AsmPrinter from DwarfPrinter.
llvm-svn: 100344
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp index a85e97f2e28..c58f76b41c2 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp @@ -1,4 +1,4 @@ -//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===// +//===-- AsmPrinterInlineAsm.cpp - AsmPrinter Inline Asm Handling ----------===// // // The LLVM Compiler Infrastructure // @@ -7,13 +7,13 @@ // //===----------------------------------------------------------------------===// // -// This file implements the AsmPrinter class. +// This file implements the inline assembler pieces of the AsmPrinter class. // //===----------------------------------------------------------------------===// #define DEBUG_TYPE "asm-printer" -#include "llvm/InlineAsm.h" #include "llvm/CodeGen/AsmPrinter.h" +#include "llvm/InlineAsm.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/MC/MCAsmInfo.h" #include "llvm/MC/MCStreamer.h" |