summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AsmPrinter
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-25 22:41:33 +0000
committerChris Lattner <sabre@nondot.org>2010-01-25 22:41:33 +0000
commit44e87255e9b7a9d8ecb558690db1181882c08045 (patch)
tree603bf353ca57e265f17f82b719b887b41cb7194b /lib/Target/Alpha/AsmPrinter
parent541ba7dd9269a67e3f1da5e0add7bbddcb6b4f9d (diff)
downloadllvm-44e87255e9b7a9d8ecb558690db1181882c08045.tar.gz
llvm-44e87255e9b7a9d8ecb558690db1181882c08045.tar.bz2
llvm-44e87255e9b7a9d8ecb558690db1181882c08045.tar.xz
eliminate redundant argument to EmitJumpTableInfo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94464 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 b13f544843..1606c54e1c 100644
--- a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
+++ b/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
@@ -133,7 +133,7 @@ bool AlphaAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
EmitConstantPool(MF.getConstantPool());
// Print out jump tables referenced by the function
- EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
+ EmitJumpTableInfo(MF);
// Print out labels for the function.
const Function *F = MF.getFunction();