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/PowerPC/PPCAsmPrinter.cpp | |
parent | edad2b783fe9ab20bdf0de2b3315559fb75f3a25 (diff) |
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/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index b7e7f2878e..bba9d75558 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -475,7 +475,7 @@ bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) { } // Print out jump tables referenced by the function. - EmitJumpTableInfo(MF.getJumpTableInfo()); + EmitJumpTableInfo(MF.getJumpTableInfo(), MF); // Emit post-function debug information. DW.EndFunction(); |