[llvm-commits] CVS: llvm/lib/CodeGen/MachineInstr.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon Aug 4 00:00:34 PDT 2003
Changes in directory llvm/lib/CodeGen:
MachineInstr.cpp updated: 1.73 -> 1.74
---
Log message:
Remove using decl
---
Diffs of the changes:
Index: llvm/lib/CodeGen/MachineInstr.cpp
diff -u llvm/lib/CodeGen/MachineInstr.cpp:1.73 llvm/lib/CodeGen/MachineInstr.cpp:1.74
--- llvm/lib/CodeGen/MachineInstr.cpp:1.73 Thu Jul 10 14:44:49 2003
+++ llvm/lib/CodeGen/MachineInstr.cpp Sun Aug 3 15:24:29 2003
@@ -8,8 +8,6 @@
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/MRegisterInfo.h"
-using std::cerr;
-
// Global variable holding an array of descriptors for machine instructions.
// The actual object needs to be created separately for each target machine.
@@ -198,7 +196,7 @@
void
MachineInstr::dump() const
{
- cerr << " " << *this;
+ std::cerr << " " << *this;
}
static inline std::ostream&
More information about the llvm-commits
mailing list