Browse Source

fixes compilation issues

HOLZSCHUCH Nicolas 7 years ago
parent
commit
2e0b526f45
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/CodeGen/BackendUtil.cpp

+ 1 - 1
lib/CodeGen/BackendUtil.cpp

@@ -271,7 +271,7 @@ static void addMemorySanitizerPass(const PassManagerBuilder &Builder,
     PM.add(createReassociatePass());
     PM.add(createLICMPass());
     PM.add(createGVNPass());
-    PM.add(createInstructionCombiningPass());
+    //NH PM.add(createInstructionCombiningPass());
     PM.add(createDeadStoreEliminationPass());
   }
 }