[llvm-commits] CVS: llvm/lib/Target/ARM/ARMAsmPrinter.cpp
Chris Lattner
sabre at nondot.org
Wed Oct 4 20:01:38 PDT 2006
Changes in directory llvm/lib/Target/ARM:
ARMAsmPrinter.cpp updated: 1.21 -> 1.22
---
Log message:
Pass the MachineFunction into EmitJumpTableInfo.
---
Diffs of the changes: (+1 -1)
ARMAsmPrinter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/ARM/ARMAsmPrinter.cpp
diff -u llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.21 llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.22
--- llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.21 Wed Oct 4 21:49:23 2006
+++ llvm/lib/Target/ARM/ARMAsmPrinter.cpp Wed Oct 4 22:01:21 2006
@@ -117,7 +117,7 @@
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();
More information about the llvm-commits
mailing list