summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/RValues.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-08-17 07:19:51 +0000
committerChris Lattner <sabre@nondot.org>2008-08-17 07:19:51 +0000
commit5d1cfa12296b0620ddf9ff259e3aa7a0b87ecfa9 (patch)
tree2c9a68c7398b49205b608dd5c6aebb1497b6e89c /clang/lib/Analysis/RValues.cpp
parent17f7165f849c17004b37b6db02b91d80cecb1855 (diff)
downloadbcm5719-llvm-5d1cfa12296b0620ddf9ff259e3aa7a0b87ecfa9.tar.gz
bcm5719-llvm-5d1cfa12296b0620ddf9ff259e3aa7a0b87ecfa9.zip
various updates to match r54873 on mainline.
llvm-svn: 54874
Diffstat (limited to 'clang/lib/Analysis/RValues.cpp')
-rw-r--r--clang/lib/Analysis/RValues.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/lib/Analysis/RValues.cpp b/clang/lib/Analysis/RValues.cpp
index a3966221232..b372ab3831b 100644
--- a/clang/lib/Analysis/RValues.cpp
+++ b/clang/lib/Analysis/RValues.cpp
@@ -352,7 +352,7 @@ void NonLVal::print(std::ostream& Out) const {
switch (getSubKind()) {
case nonlval::ConcreteIntKind:
- Out << cast<nonlval::ConcreteInt>(this)->getValue().toString();
+ Out << cast<nonlval::ConcreteInt>(this)->getValue();
if (cast<nonlval::ConcreteInt>(this)->getValue().isUnsigned())
Out << 'U';
@@ -369,7 +369,7 @@ void NonLVal::print(std::ostream& Out) const {
Out << '$' << C.getConstraint().getSymbol() << ' ';
printOpcode(Out, C.getConstraint().getOpcode());
- Out << ' ' << C.getConstraint().getInt().toString();
+ Out << ' ' << C.getConstraint().getInt();
if (C.getConstraint().getInt().isUnsigned())
Out << 'U';
@@ -395,8 +395,7 @@ void LVal::print(std::ostream& Out) const {
switch (getSubKind()) {
case lval::ConcreteIntKind:
- Out << cast<lval::ConcreteInt>(this)->getValue().toString()
- << " (LVal)";
+ Out << cast<lval::ConcreteInt>(this)->getValue() << " (LVal)";
break;
case lval::SymbolValKind:
OpenPOWER on IntegriCloud