Fix anands changes
authorChris Lattner <sabre@nondot.org>
Sun, 30 Jun 2002 16:07:20 +0000 (16:07 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 30 Jun 2002 16:07:20 +0000 (16:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2806 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp

index df3fdac6a235648b195d0390f0bfd88d7a05bc1e..81c10b7ebee536fac91f12ae15f1c01387b0cc5f 100644 (file)
 #include "Support/STLExtras.h"
 #include <algorithm>
 #include <set>
-#include <iostream>
 using std::string;
 using std::map;
 using std::ostream;
-using std::cerr;
 
 static std::string getConstStrValue(const Constant* CPV);
 
@@ -114,7 +112,7 @@ static std::string getConstStrValue(const Constant* CPV) {
   }
 
   default:
-    cerr << "Unknown constant type: " << CPV << "\n";
+    std::cerr << "Unknown constant type: " << CPV << "\n";
     abort();
   }
 }
@@ -140,7 +138,7 @@ static string calcTypeNameVar(const Type *Ty,
     case Type::FloatTyID:  return "float " + NameSoFar;
     case Type::DoubleTyID: return "double " + NameSoFar;
     default :
-      cerr << "Unknown primitive type: " << Ty << "\n";
+      std::cerr << "Unknown primitive type: " << Ty << "\n";
       abort();
     }
   
@@ -272,7 +270,7 @@ namespace {
     void visitGetElementPtrInst(GetElementPtrInst &I);
 
     void visitInstruction(Instruction &I) {
-      cerr << "C Writer does not know about " << I;
+      std::cerr << "C Writer does not know about " << I;
       abort();
     }
 
@@ -671,7 +669,7 @@ void CWriter::visitBinaryOperator(Instruction &I) {
   case Instruction::SetGT: Out << " > "; break;
   case Instruction::Shl : Out << " << "; break;
   case Instruction::Shr : Out << " >> "; break;
-  default: cerr << "Invalid operator type!" << I; abort();
+  default: std::cerr << "Invalid operator type!" << I; abort();
   }
 
   if (isa<PointerType>(I.getType())) Out << "(long long)";
index df3fdac6a235648b195d0390f0bfd88d7a05bc1e..81c10b7ebee536fac91f12ae15f1c01387b0cc5f 100644 (file)
 #include "Support/STLExtras.h"
 #include <algorithm>
 #include <set>
-#include <iostream>
 using std::string;
 using std::map;
 using std::ostream;
-using std::cerr;
 
 static std::string getConstStrValue(const Constant* CPV);
 
@@ -114,7 +112,7 @@ static std::string getConstStrValue(const Constant* CPV) {
   }
 
   default:
-    cerr << "Unknown constant type: " << CPV << "\n";
+    std::cerr << "Unknown constant type: " << CPV << "\n";
     abort();
   }
 }
@@ -140,7 +138,7 @@ static string calcTypeNameVar(const Type *Ty,
     case Type::FloatTyID:  return "float " + NameSoFar;
     case Type::DoubleTyID: return "double " + NameSoFar;
     default :
-      cerr << "Unknown primitive type: " << Ty << "\n";
+      std::cerr << "Unknown primitive type: " << Ty << "\n";
       abort();
     }
   
@@ -272,7 +270,7 @@ namespace {
     void visitGetElementPtrInst(GetElementPtrInst &I);
 
     void visitInstruction(Instruction &I) {
-      cerr << "C Writer does not know about " << I;
+      std::cerr << "C Writer does not know about " << I;
       abort();
     }
 
@@ -671,7 +669,7 @@ void CWriter::visitBinaryOperator(Instruction &I) {
   case Instruction::SetGT: Out << " > "; break;
   case Instruction::Shl : Out << " << "; break;
   case Instruction::Shr : Out << " >> "; break;
-  default: cerr << "Invalid operator type!" << I; abort();
+  default: std::cerr << "Invalid operator type!" << I; abort();
   }
 
   if (isa<PointerType>(I.getType())) Out << "(long long)";