summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhigang Gong <zhigang.gong@intel.com>2015-02-13 09:12:40 +0800
committerZhigang Gong <zhigang.gong@intel.com>2015-02-13 09:40:00 +0800
commitfd688f2187f105f00017207701de30e8916ebae5 (patch)
tree79db045c0a4ec0b01dab63119428b95ef96d5b3b
parent558238cc281cde377218edeeea70a405b7a48456 (diff)
GBE: fix build error for llvm 3.6.
Signed-off-by: Zhigang Gong <zhigang.gong@intel.com>
-rw-r--r--backend/src/llvm/llvm_bitcode_link.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/llvm/llvm_bitcode_link.cpp b/backend/src/llvm/llvm_bitcode_link.cpp
index 229e3bb5..61e2ea15 100644
--- a/backend/src/llvm/llvm_bitcode_link.cpp
+++ b/backend/src/llvm/llvm_bitcode_link.cpp
@@ -224,7 +224,7 @@ namespace gbe
}
#else
if (std::error_code EC = newMF->materialize()) {
- printf("Can not materialize the function: %s, because %s\n", fnName.c_str(), EC.message().c_str();
+ printf("Can not materialize the function: %s, because %s\n", fnName.c_str(), EC.message().c_str());
delete clonedLib;
return NULL;
}