about summary refs log tree commit diff homepage
path: root/lib
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2014-02-14 12:32:10 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2014-02-14 12:32:10 +0000
commit01fd5aa74c7bbfeeaa10d24e7578a59fa1dab3de (patch)
treee115b7b1d79e38cb8a80b1dc274740f7222c18ad /lib
parent129a80e282a4740f479e68c84f8982a42f26ce83 (diff)
downloadklee-01fd5aa74c7bbfeeaa10d24e7578a59fa1dab3de.tar.gz
Correct and tidy up comments.
Diffstat (limited to 'lib')
-rw-r--r--lib/Module/ModuleUtil.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Module/ModuleUtil.cpp b/lib/Module/ModuleUtil.cpp
index 51375719..7b19639e 100644
--- a/lib/Module/ModuleUtil.cpp
+++ b/lib/Module/ModuleUtil.cpp
@@ -156,7 +156,7 @@ GetAllUndefinedSymbols(Module *M, std::set<std::string> &UndefinedSymbols) {
  *  modules into a composite bitcode module
  *
  *  \param[in] archive Archive of bitcode modules
- *  \param[in,out] composite The archive to link the archive with
+ *  \param[in,out] composite The bitcode module to link against the archive
  *  \param[out] errorMessage Set to an error message if linking fails
  *
  *  \return True if linking succeeds otherwise false
@@ -275,7 +275,6 @@ static bool linkBCA(object::Archive* archive, Module* composite, std::string& er
         // FIXME: We aren't handling weak symbols here!
         // However the algorithm used in LLVM3.2 didn't seem to either
         // so maybe it doesn't matter?
-       // klee_warning("S: %s",(*S).c_str());
 
         if ( GlobalValue* GV = dyn_cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(*S)))
         {