[llvm-commits] CVS: llvm/lib/CodeGen/Mapping/MappingInfo.cpp

Tanya Brethour tbrethou at cs.uiuc.edu
Wed Jun 4 15:55:01 PDT 2003


Changes in directory llvm/lib/CodeGen/Mapping:

MappingInfo.cpp updated: 1.7 -> 1.8

---
Log message:

Had to comment out a line in outByte() to get it to compile because Out and tmp were
undeclared. I was not sure what Brian wanted, so I will let him fix this. But now it compiles.


---
Diffs of the changes:

Index: llvm/lib/CodeGen/Mapping/MappingInfo.cpp
diff -u llvm/lib/CodeGen/Mapping/MappingInfo.cpp:1.7 llvm/lib/CodeGen/Mapping/MappingInfo.cpp:1.8
--- llvm/lib/CodeGen/Mapping/MappingInfo.cpp:1.7	Wed Jun  4 13:17:22 2003
+++ llvm/lib/CodeGen/Mapping/MappingInfo.cpp	Wed Jun  4 15:53:46 2003
@@ -106,7 +106,7 @@
 
 /// outByte -- NOT DONE YET.
 void outByte (unsigned char b) {
-  Out << "\t.byte " << tmp << "\n";
+  //Out << "\t.byte " << tmp << "\n";
 }
 
 





More information about the llvm-commits mailing list