mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
953c681473
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239657 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
509 B
LLVM
18 lines
509 B
LLVM
|
|
; RUN: llc < %s -march=r600 -mcpu=redwood -show-mc-encoding -o - | FileCheck --check-prefix=EG %s
|
|
; RUN: llc < %s -march=r600 -mcpu=rv710 -show-mc-encoding -o - | FileCheck --check-prefix=R600 %s
|
|
|
|
; EG: .long 257
|
|
; EG: {{^}}call_fs:
|
|
; EG: CALL_FS ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x84]
|
|
; R600: .long 257
|
|
; R600: {{^}}call_fs:
|
|
; R600:CALL_FS ; encoding: [0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x89]
|
|
|
|
|
|
define void @call_fs() #0 {
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { "ShaderType"="1" } ; Vertex Shader
|