aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-25 01:13:51 +0000
committerDan Gohman <gohman@apple.com>2009-07-25 01:13:51 +0000
commit29f2baf3b3994b28f79fb6cea05b1e8bd63bab34 (patch)
treeedf00d28d4209ed5bc0cca17ec1c4f3faef32eca /llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
parent0b89dff37d9947cd6f8bcc1afa23e451130aac99 (diff)
downloadllvm-29f2baf3b3994b28f79fb6cea05b1e8bd63bab34.zip
llvm-29f2baf3b3994b28f79fb6cea05b1e8bd63bab34.tar.gz
llvm-29f2baf3b3994b28f79fb6cea05b1e8bd63bab34.tar.bz2
Convert a few more uses of llvm/Support/Streams.h to raw_ostream.
llvm-svn: 77033
Diffstat (limited to 'llvm/lib/Transforms/Utils/AddrModeMatcher.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/AddrModeMatcher.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp b/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
index 21c84ab..bcfa230 100644
--- a/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
+++ b/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
@@ -19,17 +19,18 @@
#include "llvm/Target/TargetData.h"
#include "llvm/Support/GetElementPtrTypeIterator.h"
#include "llvm/Support/PatternMatch.h"
+#include "llvm/Support/raw_ostream.h"
using namespace llvm;
using namespace llvm::PatternMatch;
-void ExtAddrMode::print(OStream &OS) const {
+void ExtAddrMode::print(raw_ostream &OS) const {
bool NeedPlus = false;
OS << "[";
if (BaseGV) {
OS << (NeedPlus ? " + " : "")
<< "GV:";
- WriteAsOperand(*OS.stream(), BaseGV, /*PrintType=*/false);
+ WriteAsOperand(OS, BaseGV, /*PrintType=*/false);
NeedPlus = true;
}
@@ -39,13 +40,13 @@ void ExtAddrMode::print(OStream &OS) const {
if (BaseReg) {
OS << (NeedPlus ? " + " : "")
<< "Base:";
- WriteAsOperand(*OS.stream(), BaseReg, /*PrintType=*/false);
+ WriteAsOperand(OS, BaseReg, /*PrintType=*/false);
NeedPlus = true;
}
if (Scale) {
OS << (NeedPlus ? " + " : "")
<< Scale << "*";
- WriteAsOperand(*OS.stream(), ScaledReg, /*PrintType=*/false);
+ WriteAsOperand(OS, ScaledReg, /*PrintType=*/false);
NeedPlus = true;
}
@@ -53,7 +54,7 @@ void ExtAddrMode::print(OStream &OS) const {
}
void ExtAddrMode::dump() const {
- print(cerr);
+ print(errs());
cerr << '\n';
}