summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/cf_end.ll
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-05-06 17:50:44 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-05-06 17:50:44 +0000
commit4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c (patch)
treebc40eea017a5b80bba87775d44c42c22168561ad /test/CodeGen/R600/cf_end.ll
parent93f3fed999e039988deca64d19cbf122d46cdd59 (diff)
downloadllvm-4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c.tar.gz
llvm-4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c.tar.bz2
llvm-4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c.tar.xz
R600: Stop emitting the instruction type byte before each instruction
Reviewed-by: Vincent Lejeune <vljn@ovi.com> Tested-By: Aaron Watry <awatry@gmail.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181225 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/cf_end.ll')
-rw-r--r--test/CodeGen/R600/cf_end.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/R600/cf_end.ll b/test/CodeGen/R600/cf_end.ll
index 56cd7de382..138004df6d 100644
--- a/test/CodeGen/R600/cf_end.ll
+++ b/test/CodeGen/R600/cf_end.ll
@@ -2,8 +2,8 @@
; RUN: llc < %s -march=r600 -mcpu=caicos --show-mc-encoding | FileCheck --check-prefix=EG-CHECK %s
; RUN: llc < %s -march=r600 -mcpu=cayman --show-mc-encoding | FileCheck --check-prefix=CM-CHECK %s
-; EG-CHECK: CF_END ; encoding: [0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80]
-; CM-CHECK: CF_END ; encoding: [0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88]
+; EG-CHECK: CF_END ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80]
+; CM-CHECK: CF_END ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88]
define void @eop() {
ret void
}