about summary refs log tree commit diff homepage
path: root/lib/Core
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-14 03:33:15 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-14 03:33:15 +0000
commit92e1bf7b665a7f5ec682becb78e014e62d10beec (patch)
tree13d2946e3dbff09ce1269db612dfaec71b61bbab /lib/Core
parent7fe8f20ef3b4259fb289dcf5efcff58111364838 (diff)
downloadklee-92e1bf7b665a7f5ec682becb78e014e62d10beec.tar.gz
Add constant folding operations to ConstantExpr.
 - No (intended) functionality change.


git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core')
-rw-r--r--lib/Core/Executor.cpp2
-rw-r--r--lib/Core/Memory.cpp2
2 files changed, 1 insertions, 3 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp
index 39c6d78a..2aae57c9 100644
--- a/lib/Core/Executor.cpp
+++ b/lib/Core/Executor.cpp
@@ -242,7 +242,7 @@ namespace {
 
   cl::opt<bool>
   MaxMemoryInhibit("max-memory-inhibit",
-            cl::desc("Inhibit forking at memory cap (vs. random terminat)"),
+            cl::desc("Inhibit forking at memory cap (vs. random terminate)"),
             cl::init(true));
 
   // use 'external storage' because also needed by tools/klee/main.cpp
diff --git a/lib/Core/Memory.cpp b/lib/Core/Memory.cpp
index 9a79abfd..d8cf0bdb 100644
--- a/lib/Core/Memory.cpp
+++ b/lib/Core/Memory.cpp
@@ -61,8 +61,6 @@ ObjectHolder &ObjectHolder::operator=(const ObjectHolder &b) {
 
 int MemoryObject::counter = 0;
 
-extern "C" void vc_DeleteExpr(void*);
-
 MemoryObject::~MemoryObject() {
 }