about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@gmail.com>2016-11-03 10:22:54 +0000
committerAndrea Mattavelli <andreamattavelli@gmail.com>2016-11-03 10:22:54 +0000
commitbf9f4a9765213060a268857200b457b8cdcddac0 (patch)
treef516e99450b5d87b19e6d3fb431db50c1325faa9
parentdeb3584ea5a75f7fe33b3aeed084bfbbaaf18d98 (diff)
downloadklee-bf9f4a9765213060a268857200b457b8cdcddac0.tar.gz
Adds support for Darwin platform in RaiseAsm pass
-rw-r--r--lib/Module/RaiseAsm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Module/RaiseAsm.cpp b/lib/Module/RaiseAsm.cpp
index 7c0e6ccf..e612ca63 100644
--- a/lib/Module/RaiseAsm.cpp
+++ b/lib/Module/RaiseAsm.cpp
@@ -67,7 +67,8 @@ bool RaiseAsmPass::runOnInstruction(Module &M, Instruction *I) {
     return true;
 
   if (triple.getArch() == llvm::Triple::x86_64 &&
-      triple.getOS() == llvm::Triple::Linux) {
+      (triple.getOS() == llvm::Triple::Linux ||
+       triple.getOS() == llvm::Triple::Darwin)) {
 
     if (ia->getAsmString() == "" && ia->hasSideEffects()) {
 #if LLVM_VERSION_CODE >= LLVM_VERSION(3, 3)