From dbb4a7f9502c886885bfd8cc635eb5e52f3d1d39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Thu, 27 Sep 2012 14:15:44 +0200 Subject: [PATCH] radeon/llvm: Disable SI flow control again for now. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It makes piglit unreliable due to VM protection faults and GPU lockups. Signed-off-by: Michel Dänzer Reviewed-by: Tom Stellard --- src/gallium/drivers/radeon/AMDGPUTargetMachine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeon/AMDGPUTargetMachine.cpp b/src/gallium/drivers/radeon/AMDGPUTargetMachine.cpp index 0b70191b83b..bfe9d81303b 100644 --- a/src/gallium/drivers/radeon/AMDGPUTargetMachine.cpp +++ b/src/gallium/drivers/radeon/AMDGPUTargetMachine.cpp @@ -134,7 +134,8 @@ bool AMDGPUPassConfig::addPreEmitPass() { addPass(FinalizeMachineBundlesID); } else { PM->add(createSILowerLiteralConstantsPass(*TM)); - PM->add(createSILowerFlowControlPass(*TM)); + // piglit is unreliable (VM protection faults, GPU lockups) with this pass: + //PM->add(createSILowerFlowControlPass(*TM)); } return false; -- 2.30.2