[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp

Chris Lattner sabre at nondot.org
Wed Oct 4 20:01:38 PDT 2006



Changes in directory llvm/lib/Target/Alpha:

AlphaAsmPrinter.cpp updated: 1.51 -> 1.52
---
Log message:

Pass the MachineFunction into EmitJumpTableInfo.


---
Diffs of the changes:  (+1 -1)

 AlphaAsmPrinter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp
diff -u llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.51 llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.52
--- llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.51	Wed Oct  4 21:47:13 2006
+++ llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp	Wed Oct  4 22:01:21 2006
@@ -162,7 +162,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