You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
552 B
16 lines
552 B
// RUN: llvm-mc -arch=amdgcn -mcpu=tahiti %s | FileCheck -check-prefix=GCN -check-prefix=SI %s
|
|
// RUN: not llvm-mc -arch=amdgcn -mcpu=tonga %s 2>&1 | FileCheck -check-prefix=GCN -check-prefix=VI %s
|
|
|
|
s_load_dwordx4 s[100:103], s[2:3], s4
|
|
// VI: error: not a valid operand
|
|
// SI: s_load_dwordx4 s[100:103], s[2:3], s4
|
|
|
|
|
|
s_load_dwordx8 s[96:103], s[2:3], s4
|
|
// VI: error: not a valid operand
|
|
// SI: s_load_dwordx8 s[96:103], s[2:3], s4
|
|
|
|
s_load_dwordx16 s[88:103], s[2:3], s4
|
|
// VI: error: not a valid operand
|
|
// SI: s_load_dwordx16 s[88:103], s[2:3], s4
|