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

Chris Lattner lattner at cs.uiuc.edu
Mon Feb 23 12:41:02 PST 2004


Changes in directory llvm/lib/CodeGen:

MachineInstr.cpp updated: 1.92 -> 1.93

---
Log message:

Fix bugs in finegrainification


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

Index: llvm/lib/CodeGen/MachineInstr.cpp
diff -u llvm/lib/CodeGen/MachineInstr.cpp:1.92 llvm/lib/CodeGen/MachineInstr.cpp:1.93
--- llvm/lib/CodeGen/MachineInstr.cpp:1.92	Mon Feb 23 12:38:20 2004
+++ llvm/lib/CodeGen/MachineInstr.cpp	Mon Feb 23 12:40:08 2004
@@ -30,7 +30,7 @@
 // FIXME: This should be a property of the target so that more than one target
 // at a time can be active...
 //
-namespace {
+namespace llvm {
   extern const TargetInstrDescriptor *TargetInstrDescriptors;
 }
 
@@ -329,6 +329,7 @@
   OS << "\n";
 }
 
+namespace llvm {
 std::ostream &operator<<(std::ostream &os, const MachineInstr &MI) {
   // If the instruction is embedded into a basic block, we can find the target
   // info for the instruction.
@@ -448,3 +449,4 @@
   return OS;
 }
 
+}





More information about the llvm-commits mailing list