summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Lejeune <vljn@ovi.com>2012-11-27 23:10:58 +0100
committerTom Stellard <thomas.stellard@amd.com>2012-11-29 15:58:19 +0000
commit621130f75f696a5f1b6f3968570a1b19f5bf2c41 (patch)
tree39c464728c02245432433eaacc47387b2fc9ea45
parentca5bbe13d3a749ee7b6c3f03dedf9d0904ed4b76 (diff)
R600: Valid pixel mode and EOP were inverted in export
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
-rw-r--r--lib/Target/AMDGPU/R600Instructions.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/AMDGPU/R600Instructions.td b/lib/Target/AMDGPU/R600Instructions.td
index ccec2496c6a..2a5952a5f57 100644
--- a/lib/Target/AMDGPU/R600Instructions.td
+++ b/lib/Target/AMDGPU/R600Instructions.td
@@ -969,8 +969,8 @@ let Predicates = [isR600] in {
def R600_Export : ExportInst
{
let Inst{52-49} = 1; // BURST_COUNT
- let Inst{53} = 1; // VALID_PIXEL_MODE
- let Inst{54} = eop;
+ let Inst{53} = eop;
+ let Inst{54} = 1; // VALID_PIXEL_MODE
let Inst{62-55} = inst;
let Inst{63} = 1; // BARRIER
}