diff options
| author | Bill Wendling <isanbard@gmail.com> | 2006-12-07 01:30:32 +0000 | 
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2006-12-07 01:30:32 +0000 | 
| commit | f3baad3ee14689641493a578f3a1561cb15ac517 (patch) | |
| tree | 9259790ab0eabbd126ea6426cd08226883090062 /llvm/lib/Analysis/InstCount.cpp | |
| parent | d8e7451dc3414cfc43a7622e5f0051a5ac5e94a2 (diff) | |
| download | bcm5719-llvm-f3baad3ee14689641493a578f3a1561cb15ac517.tar.gz bcm5719-llvm-f3baad3ee14689641493a578f3a1561cb15ac517.zip | |
Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are
now cerr, cout, and NullStream resp.
llvm-svn: 32298
Diffstat (limited to 'llvm/lib/Analysis/InstCount.cpp')
| -rw-r--r-- | llvm/lib/Analysis/InstCount.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Analysis/InstCount.cpp b/llvm/lib/Analysis/InstCount.cpp index 38f0bbaa9a7..04dfbf4cf97 100644 --- a/llvm/lib/Analysis/InstCount.cpp +++ b/llvm/lib/Analysis/InstCount.cpp @@ -43,7 +43,7 @@ namespace {  #include "llvm/Instruction.def"      void visitInstruction(Instruction &I) { -      llvm_cerr << "Instruction Count does not know about " << I; +      cerr << "Instruction Count does not know about " << I;        abort();      }    public: | 

