aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/R600/R600Instructions.td
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-02-07 14:02:27 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-02-07 14:02:27 +0000
commitb4409610a25506cdef36ac549287fc3240ae0887 (patch)
tree55d34fb0f389bb7d18ffb439176ac1adc5d437af /lib/Target/R600/R600Instructions.td
parent8ff0631967c64d51b193b862aa0a6f1e8eb06f78 (diff)
R600: Fix assembly name for SETGT_INT
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600/R600Instructions.td')
-rw-r--r--lib/Target/R600/R600Instructions.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/R600/R600Instructions.td b/lib/Target/R600/R600Instructions.td
index afb30ec0d4..d40e75bf9e 100644
--- a/lib/Target/R600/R600Instructions.td
+++ b/lib/Target/R600/R600Instructions.td
@@ -771,7 +771,7 @@ def SETE_INT : R600_2OP <
>;
def SETGT_INT : R600_2OP <
- 0x3B, "SGT_INT",
+ 0x3B, "SETGT_INT",
[(set (i32 R600_Reg32:$dst),
(selectcc (i32 R600_Reg32:$src0), R600_Reg32:$src1, -1, 0, SETGT))]
>;