summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AsmPrinter
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-28 01:02:27 +0000
committerChris Lattner <sabre@nondot.org>2010-01-28 01:02:27 +0000
commit14c38ec2afeaf25c53a50c2c65116aca8c889401 (patch)
treea8ed93037a7e6aaf38c701f3af60e8f86f81c30b /lib/Target/Alpha/AsmPrinter
parenta2406190ca28dc5901dfe747849c8eda9c29d7ee (diff)
downloadllvm-14c38ec2afeaf25c53a50c2c65116aca8c889401.tar.gz
llvm-14c38ec2afeaf25c53a50c2c65116aca8c889401.tar.bz2
llvm-14c38ec2afeaf25c53a50c2c65116aca8c889401.tar.xz
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/Alpha/AsmPrinter')
-rw-r--r--lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
index a4c3a49a3f..5095705df8 100644
--- a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
+++ b/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;