about summary refs log tree commit diff homepage
path: root/lib/Solver/IndependentSolver.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-09 06:22:35 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-09 06:22:35 +0000
commitcf0ea9235d27eeca47540ba5fba11acfc7f4d3d3 (patch)
treef1a5983fce43d7fc72d9caec034e4711e0f14fad /lib/Solver/IndependentSolver.cpp
parentaad9179e9401872640bf19ebd7a4e215c4ec5702 (diff)
downloadklee-cf0ea9235d27eeca47540ba5fba11acfc7f4d3d3.tar.gz
Switch Array* print-outs to use name instead of ID, and update a few
constructors I missed.


git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Solver/IndependentSolver.cpp')
-rw-r--r--lib/Solver/IndependentSolver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Solver/IndependentSolver.cpp b/lib/Solver/IndependentSolver.cpp
index 7ebee1c7..69f9567c 100644
--- a/lib/Solver/IndependentSolver.cpp
+++ b/lib/Solver/IndependentSolver.cpp
@@ -131,7 +131,7 @@ public:
         os << ", ";
       }
 
-      os << "MO" << array->id;
+      os << "MO" << array->name;
     }
     for (elements_ty::const_iterator it = elements.begin(), ie = elements.end();
          it != ie; ++it) {
@@ -144,7 +144,7 @@ public:
         os << ", ";
       }
 
-      os << "MO" << array->id << " : " << dis;
+      os << "MO" << array->name << " : " << dis;
     }
     os << "}";
   }