summaryrefslogtreecommitdiff
path: root/lib/Target/R600/R600EmitClauseMarkers.cpp
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-10-10 17:11:12 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-10-10 17:11:12 +0000
commitde28bdadff78ceea6bb05e23dc3b4cc92fa359ed (patch)
tree40e51bd681f55003fe60c9f0f10bf43f25c4d18c /lib/Target/R600/R600EmitClauseMarkers.cpp
parent6a5a667517160ca1b557002a29d08868ae029451 (diff)
downloadllvm-de28bdadff78ceea6bb05e23dc3b4cc92fa359ed.tar.gz
llvm-de28bdadff78ceea6bb05e23dc3b4cc92fa359ed.tar.bz2
llvm-de28bdadff78ceea6bb05e23dc3b4cc92fa359ed.tar.xz
R600: Use StructurizeCFGPass for non SI targets
StructurizeCFG pass allows to make complex cfg reducible ; it allows a lot of shader from shadertoy (which exhibits complex control flow constructs) to works correctly with respect to CFG handling (and allow us to detect potential bug in other part of the backend). We provide a cmd line argument to disable the pass for debug purpose. Patch by: Vincent Lejeune Reviewed-by: Tom Stellard <thomas.stellard@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600/R600EmitClauseMarkers.cpp')
-rw-r--r--lib/Target/R600/R600EmitClauseMarkers.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/R600/R600EmitClauseMarkers.cpp b/lib/Target/R600/R600EmitClauseMarkers.cpp
index beacc0ea62..928c0e3ba6 100644
--- a/lib/Target/R600/R600EmitClauseMarkers.cpp
+++ b/lib/Target/R600/R600EmitClauseMarkers.cpp
@@ -84,6 +84,7 @@ private:
switch (MI->getOpcode()) {
case AMDGPU::KILL:
case AMDGPU::RETURN:
+ case AMDGPU::IMPLICIT_DEF:
return true;
default:
return false;