diff options
author | Michel Dänzer <[email protected]> | 2012-09-27 14:15:44 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2012-10-02 16:50:36 +0200 |
commit | dbb4a7f9502c886885bfd8cc635eb5e52f3d1d39 (patch) | |
tree | 8a335d160a38d783f17875e0fa275687f7997cee /src/gallium/drivers/radeon | |
parent | 48e4eb695a319669516506113b021470ad9e521a (diff) |
radeon/llvm: Disable SI flow control again for now.
It makes piglit unreliable due to VM protection faults and GPU lockups.
Signed-off-by: Michel Dänzer <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/AMDGPUTargetMachine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; |