From 6d28bf65b920fc0b231cc52000b2b479dde64e13 Mon Sep 17 00:00:00 2001 From: tstellar Date: Tue, 9 Oct 2012 18:49:07 +0000 Subject: R600: Disable SI flow control again for now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It makes piglit unreliable due to VM protection faults and GPU lockups. Patch by: Michel Dänzer Signed-off-by: Michel Dänzer Reviewed-by: Tom Stellard git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/R600/@165529 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp b/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp index 943656e392..8aaa365283 100644 --- a/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp +++ b/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp @@ -134,7 +134,8 @@ bool AMDGPUPassConfig::addPreEmitPass() { addPass(&FinalizeMachineBundlesID); } else { addPass(createSILowerLiteralConstantsPass(*TM)); - addPass(createSILowerFlowControlPass(*TM)); + // piglit is unreliable (VM protection faults, GPU lockups) with this pass: + //addPass(createSILowerFlowControlPass(*TM)); } return false; -- cgit v1.2.3