diff options
author | Chris Lattner <sabre@nondot.org> | 2008-08-17 07:19:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-08-17 07:19:51 +0000 |
commit | 9aa77f137b9b368f5bf46e2ab7bc7bd1d5755a5b (patch) | |
tree | 2949c9c0bb897ef0f02bd57ff2bd3e34ae39f778 /lib/Analysis/RValues.cpp | |
parent | 653201b7d20a554e11e8c59f0afc41dd7a815410 (diff) |
various updates to match r54873 on mainline.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54874 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RValues.cpp')
-rw-r--r-- | lib/Analysis/RValues.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/Analysis/RValues.cpp b/lib/Analysis/RValues.cpp index a396622123..b372ab3831 100644 --- a/lib/Analysis/RValues.cpp +++ b/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: |