diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-01-25 22:41:33 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-01-25 22:41:33 +0000 |
| commit | a4074257abe2f4648dbfd9bcc3a4092e67ffd74a (patch) | |
| tree | 97c50ad4912ef71d0a5217f97ff38dbbac10f403 /llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp | |
| parent | 4e29505a95072cd0d12ee9b4fc23cd32faabc219 (diff) | |
| download | bcm5719-llvm-a4074257abe2f4648dbfd9bcc3a4092e67ffd74a.tar.gz bcm5719-llvm-a4074257abe2f4648dbfd9bcc3a4092e67ffd74a.zip | |
eliminate redundant argument to EmitJumpTableInfo
llvm-svn: 94464
Diffstat (limited to 'llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp')
| -rw-r--r-- | llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp b/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp index 9af9bd8b4e7..fd0ab2d99b5 100644 --- a/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp +++ b/llvm/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp @@ -256,7 +256,7 @@ bool MipsAsmPrinter::runOnMachineFunction(MachineFunction &MF) { EmitConstantPool(MF.getConstantPool()); // Print out jump tables referenced by the function - EmitJumpTableInfo(MF.getJumpTableInfo(), MF); + EmitJumpTableInfo(MF); O << "\n\n"; |

