brintos

brintos / llvm-project-archived public Read only

0
0
Text · 466 B · 5470ea9 Raw
16 lines · plain
1 2; RUN: llc < %s -mtriple=r600 -mcpu=redwood -show-mc-encoding -o - | FileCheck --check-prefix=EG %s3; RUN: llc < %s -mtriple=r600 -mcpu=rv710 -show-mc-encoding -o - | FileCheck --check-prefix=R600 %s4 5; EG: .long 2576; EG: {{^}}call_fs:7; EG: CALL_FS  ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x84]8; R600: .long 2579; 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 void15}16