diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-05-06 17:50:44 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-05-06 17:50:44 +0000 |
commit | 4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c (patch) | |
tree | bc40eea017a5b80bba87775d44c42c22168561ad /test/CodeGen/R600/call_fs.ll | |
parent | 93f3fed999e039988deca64d19cbf122d46cdd59 (diff) | |
download | external_llvm-4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c.zip external_llvm-4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c.tar.gz external_llvm-4f3d8a644043f85063ef7aac1ff87bfd4d83ca4c.tar.bz2 |
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/call_fs.ll')
-rw-r--r-- | test/CodeGen/R600/call_fs.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/R600/call_fs.ll b/test/CodeGen/R600/call_fs.ll index fd21b72..e152bf6 100644 --- a/test/CodeGen/R600/call_fs.ll +++ b/test/CodeGen/R600/call_fs.ll @@ -3,9 +3,9 @@ ; RUN: llc < %s -march=r600 -mcpu=rv710 -show-mc-encoding -o - | FileCheck --check-prefix=R600-CHECK %s ; EG-CHECK: @call_fs -; EG-CHECK: CALL_FS ; encoding: [0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x84] +; EG-CHECK: CALL_FS ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x84] ; R600-CHECK: @call_fs -; R600-CHECK:CALL_FS ; encoding: [0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x89] +; R600-CHECK:CALL_FS ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x89] define void @call_fs() #0 { |