mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
cb0c02c980
VI added a second method of indexing into VGPRs besides using v_movrel* llvm-svn: 284027
11 lines
319 B
ArmAsm
11 lines
319 B
ArmAsm
// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga %s 2>&1 | FileCheck -check-prefix=GCN -check-prefix=VI %s
|
|
|
|
s_set_gpr_idx_on s0, s1
|
|
// GCN: error: invalid operand for instruction
|
|
|
|
s_set_gpr_idx_on s0, 16
|
|
// GCN: error: invalid operand for instruction
|
|
|
|
s_set_gpr_idx_on s0, -1
|
|
// GCN: error: invalid operand for instruction
|