[llvm] r239570 - [Orc] Attempted fix for GCC ICE on Polly builder.

Lang Hames lhames at gmail.com
Thu Jun 11 15:51:01 PDT 2015


Author: lhames
Date: Thu Jun 11 17:51:01 2015
New Revision: 239570

URL: http://llvm.org/viewvc/llvm-project?rev=239570&view=rev
Log:
[Orc] Attempted fix for GCC ICE on Polly builder.

Along the same lines as the fix in r228568.


Modified:
    llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h?rev=239570&r1=239569&r2=239570&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h Thu Jun 11 17:51:01 2015
@@ -184,7 +184,7 @@ private:
       makeStub(*StubF, *FnBodyPtr);
       CCInfo.setCompileAction(
         [this, &LD, LMH, &F]() {
-          return extractAndCompile(LD, LMH, F);
+          return this->extractAndCompile(LD, LMH, F);
         });
     }
 





More information about the llvm-commits mailing list