commit | 6228106e9fefece48d70300b237d1cc2618943cf | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Apr 18 18:14:40 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Apr 18 18:14:40 2002 +0000 |
tree | 35d5d2288effec128f771b40e4d832871e084ece | |
parent | 595d2f670a5685c41c700556454edd862a6aeec4 [diff] [blame] |
Just use << isntead of forcing getStrValue git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2294 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/LiveVar/ValueSet.cpp b/lib/Analysis/LiveVar/ValueSet.cpp index ec1d780..fb691c2 100644 --- a/lib/Analysis/LiveVar/ValueSet.cpp +++ b/lib/Analysis/LiveVar/ValueSet.cpp
@@ -10,7 +10,7 @@ if (v->hasName()) return O << v << "(" << v->getName() << ") "; else if (Constant *C = dyn_cast<Constant>(v)) - return O << v << "(" << C->getStrValue() << ") "; + return O << v << "(" << C << ") "; else return O << v << " "; }