about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-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)