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 | 94a946cac4de71f964278f5e4a4dea40e6398353 (patch) | |
| tree | ee0b234d3806ae9923c8879ad63a1d8e5141e262 /llvm/lib/Target/Alpha | |
| parent | bcbdaea7037c35793d4275347e46b2dc30db285c (diff) | |
| download | bcm5719-llvm-94a946cac4de71f964278f5e4a4dea40e6398353.tar.gz bcm5719-llvm-94a946cac4de71f964278f5e4a4dea40e6398353.zip | |
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.
llvm-svn: 94716
Diffstat (limited to 'llvm/lib/Target/Alpha')
| -rw-r--r-- | llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp b/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp index a4c3a49a3f0..5095705df8e 100644 --- a/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp +++ b/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp @@ -154,7 +154,7 @@ bool AlphaAsmPrinter::runOnMachineFunction(MachineFunction &MF) { O << "\t.end " << *CurrentFnSym << "\n"; // Print out jump tables referenced by the function - EmitJumpTableInfo(MF); + EmitJumpTableInfo(); // We didn't modify anything. return false; |

