Removed #include <iostream> and used llvm streams

llvm-svn: 31984
This commit is contained in:
Bill Wendling 2006-11-28 22:47:12 +00:00
parent 597d451fea
commit 6c1740f31f
1 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,8 @@
#include "llvm/Support/GetElementPtrTypeIterator.h" #include "llvm/Support/GetElementPtrTypeIterator.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/Support/MathExtras.h" #include "llvm/Support/MathExtras.h"
#include "llvm/Support/Streams.h"
#include <algorithm> #include <algorithm>
#include <iostream>
#include <list> #include <list>
#include <utility> #include <utility>
@ -58,7 +58,7 @@ static Module *ParserResult;
// //
//#define DEBUG_UPREFS 1 //#define DEBUG_UPREFS 1
#ifdef DEBUG_UPREFS #ifdef DEBUG_UPREFS
#define UR_OUT(X) std::cerr << X #define UR_OUT(X) llvm_cerr << X
#else #else
#define UR_OUT(X) #define UR_OUT(X)
#endif #endif
@ -2633,7 +2633,7 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
delete $2.type; delete $2.type;
} }
| NOT ResolvedVal { | NOT ResolvedVal {
std::cerr << "WARNING: Use of eliminated 'not' instruction:" llvm_cerr << "WARNING: Use of eliminated 'not' instruction:"
<< " Replacing with 'xor'.\n"; << " Replacing with 'xor'.\n";
Value *Ones = ConstantIntegral::getAllOnesValue($2.val->getType()); Value *Ones = ConstantIntegral::getAllOnesValue($2.val->getType());