summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-01-23 18:49:31 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-01-23 18:49:31 +0000
commitcbf79028c32a2cac90717ab768e083a13ade4792 (patch)
tree0bced7ae8cdf5fcb287b331aa8b6b4605bbc39d5 /lib
parent01df2fa3c427b49b60da9ea19b6c42ae13e0a134 (diff)
downloadllvm-cbf79028c32a2cac90717ab768e083a13ade4792.tar.gz
llvm-cbf79028c32a2cac90717ab768e083a13ade4792.tar.bz2
llvm-cbf79028c32a2cac90717ab768e083a13ade4792.tar.xz
R600: Correctly handle vertex fetch clauses the precede ENDIFs
The control flow finalizer would sometimes use an ALU_POP_AFTER instruction before the vetex fetch clause instead of using a POP instruction after it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/R600/R600ControlFlowFinalizer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/R600/R600ControlFlowFinalizer.cpp b/lib/Target/R600/R600ControlFlowFinalizer.cpp
index 470ff2e107..f74bef3c9b 100644
--- a/lib/Target/R600/R600ControlFlowFinalizer.cpp
+++ b/lib/Target/R600/R600ControlFlowFinalizer.cpp
@@ -501,6 +501,7 @@ public:
DEBUG(dbgs() << CfCount << ":"; I->dump(););
FetchClauses.push_back(MakeFetchClause(MBB, I));
CfCount++;
+ LastAlu.back() = 0;
continue;
}