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 13define amdgpu_vs void @call_fs() { 14 ret void 15} 16