about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-01 19:51:59 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-01 19:51:59 +0000
commit5169c2558fc40d37418477cbb1f58144618d9e11 (patch)
tree5704301febf04dd835c9cd635b9d96bb37080919
parente4401b37dba9045c8aa7dc01535fcb4cd92a399e (diff)
downloadklee-5169c2558fc40d37418477cbb1f58144618d9e11.tar.gz
Rename intrinsic library to libkleeRuntimeInstrinsic, for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@77797 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Module/KModule.cpp2
-rw-r--r--runtime/Intrinsic/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp
index eae1d2a9..78ecf4d1 100644
--- a/lib/Module/KModule.cpp
+++ b/lib/Module/KModule.cpp
@@ -282,7 +282,7 @@ void KModule::prepare(const Interpreter::ModuleOptions &opts,
   // this to be linked in, it makes low level debugging much more
   // annoying.
   llvm::sys::Path path(opts.LibraryDir);
-  path.appendComponent("libintrinsic.bca");
+  path.appendComponent("libkleeRuntimeIntrinsic.bca");
   module = linkWithLibrary(module, path.c_str());
 
   // Needs to happen after linking (since ctors/dtors can be modified)
diff --git a/runtime/Intrinsic/Makefile b/runtime/Intrinsic/Makefile
index ce4a34ba..721b9772 100644
--- a/runtime/Intrinsic/Makefile
+++ b/runtime/Intrinsic/Makefile
@@ -9,7 +9,7 @@
 
 LEVEL=../..
 
-LIBRARYNAME=intrinsic
+LIBRARYNAME=kleeRuntimeIntrinsic
 DONT_BUILD_RELINKED=1
 BUILD_ARCHIVE=1
 BYTECODE_LIBRARY=1