diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-12-01 03:45:07 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-12-01 03:45:07 +0000 |
commit | baf120fbe8056ef68fc91b16465590fdf2311c27 (patch) | |
tree | 57a2cbfb7e15f3092f554dbb5c88a2e9216ddd4d /lib/Target/ARM/ARM.h | |
parent | 5265f22f4558f376dece4744b3fe2ae1c637d223 (diff) |
Move the ARMAsmPrinter class defintiion into a header file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARM.h')
-rw-r--r-- | lib/Target/ARM/ARM.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARM.h b/lib/Target/ARM/ARM.h index f0141b813b..83c83335b2 100644 --- a/lib/Target/ARM/ARM.h +++ b/lib/Target/ARM/ARM.h @@ -29,7 +29,7 @@ class formatted_raw_ostream; class MCCodeEmitter; class TargetAsmBackend; class MachineInstr; -class AsmPrinter; +class ARMAsmPrinter; class MCInst; MCCodeEmitter *createARMMCCodeEmitter(const Target &, @@ -55,8 +55,8 @@ FunctionPass *createThumb2SizeReductionPass(); extern Target TheARMTarget, TheThumbTarget; void LowerARMMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI, - AsmPrinter &AP); - + ARMAsmPrinter &AP); + } // end namespace llvm; #endif |