mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
24 lines
635 B
ArmAsm
24 lines
635 B
ArmAsm
|
// RUN: not llvm-mc -arch=amdgcn %s 2>&1 | FileCheck %s
|
||
|
// RUN: not llvm-mc -arch=amdgcn -mcpu=SI %s 2>&1 | FileCheck %s
|
||
|
|
||
|
// offset too big
|
||
|
// CHECK: invalid operand for instruction
|
||
|
ds_add_u32 v2, v4 offset:1000000000
|
||
|
|
||
|
// offset0 twice
|
||
|
// CHECK: error: not a valid operand.
|
||
|
ds_write2_b32 v2, v4, v6 offset0:4 offset0:8
|
||
|
|
||
|
// offset1 twice
|
||
|
// CHECK: error: not a valid operand.
|
||
|
ds_write2_b32 v2, v4, v6 offset1:4 offset1:8
|
||
|
|
||
|
// offset0 too big
|
||
|
// CHECK: invalid operand for instruction
|
||
|
ds_write2_b32 v2, v4, v6 offset0:1000000000
|
||
|
|
||
|
// offset1 too big
|
||
|
// CHECK: invalid operand for instruction
|
||
|
ds_write2_b32 v2, v4, v6 offset1:1000000000
|
||
|
|