[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
Chris Lattner
sabre at nondot.org
Wed Oct 4 20:01:38 PDT 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCAsmPrinter.cpp updated: 1.200 -> 1.201
---
Log message:
Pass the MachineFunction into EmitJumpTableInfo.
---
Diffs of the changes: (+1 -1)
PPCAsmPrinter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.200 llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.201
--- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.200 Wed Oct 4 21:42:20 2006
+++ llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp Wed Oct 4 22:01:21 2006
@@ -475,7 +475,7 @@
}
// Print out jump tables referenced by the function.
- EmitJumpTableInfo(MF.getJumpTableInfo());
+ EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
// Emit post-function debug information.
DW.EndFunction();
More information about the llvm-commits
mailing list