diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-28 01:02:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-28 01:02:27 +0000 |
commit | 14c38ec2afeaf25c53a50c2c65116aca8c889401 (patch) | |
tree | a8ed93037a7e6aaf38c701f3af60e8f86f81c30b /lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | |
parent | a2406190ca28dc5901dfe747849c8eda9c29d7ee (diff) |
Remove the argument from EmitJumpTableInfo, because it doesn't need it.
Move the X86 implementation of function body emission up to
AsmPrinter::EmitFunctionBody, which works by calling the virtual
EmitInstruction method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp')
-rw-r--r-- | lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp index e2e0b2befc..39344959b6 100644 --- a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp +++ b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp @@ -264,7 +264,7 @@ bool XCoreAsmPrinter::runOnMachineFunction(MachineFunction &MF) { emitFunctionEnd(MF); // Print out jump tables referenced by the function - EmitJumpTableInfo(MF); + EmitJumpTableInfo(); // Emit post-function debug information. DW->EndFunction(&MF); |