diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-05 03:01:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-05 03:01:21 +0000 |
commit | 1da31ee472b9615d7329c656e2cc17c419ed7c95 (patch) | |
tree | 53acb45503d1236ffe89ff984efd14a4749361b7 /lib/Target/Alpha/AlphaAsmPrinter.cpp | |
parent | edad2b783fe9ab20bdf0de2b3315559fb75f3a25 (diff) | |
download | external_llvm-1da31ee472b9615d7329c656e2cc17c419ed7c95.tar.gz external_llvm-1da31ee472b9615d7329c656e2cc17c419ed7c95.tar.bz2 external_llvm-1da31ee472b9615d7329c656e2cc17c419ed7c95.zip |
Pass the MachineFunction into EmitJumpTableInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30742 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaAsmPrinter.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AlphaAsmPrinter.cpp index 265f8ae4a2..3448f3c473 100644 --- a/lib/Target/Alpha/AlphaAsmPrinter.cpp +++ b/lib/Target/Alpha/AlphaAsmPrinter.cpp @@ -162,7 +162,7 @@ bool AlphaAsmPrinter::runOnMachineFunction(MachineFunction &MF) { EmitConstantPool(MF.getConstantPool()); // Print out jump tables referenced by the function - EmitJumpTableInfo(MF.getJumpTableInfo()); + EmitJumpTableInfo(MF.getJumpTableInfo(), MF); // Print out labels for the function. const Function *F = MF.getFunction(); |