1 2 ; RUN: llc < %s -march=r600 -mcpu=redwood -show-mc-encoding -o - | FileCheck --check-prefix=EG %s 3 ; RUN: llc < %s -march=r600 -mcpu=rv710 -show-mc-encoding -o - | FileCheck --check-prefix=R600 %s 4 5 ; EG: .long 257 6 ; EG: {{^}}call_fs: 7 ; EG: CALL_FS ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x84] 8 ; R600: .long 257 9 ; R600: {{^}}call_fs: 10 ; R600:CALL_FS ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x89] 11 12 13 define void @call_fs() #0 { 14 ret void 15 } 16 17 attributes #0 = { "ShaderType"="1" } ; Vertex Shader 18