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.
12 lines
369 B
12 lines
369 B
# RUN: not llvm-mc %s -arch=mips -mcpu=mips32r2 2>%t1
|
|
# RUN: FileCheck %s < %t1
|
|
|
|
.set nomsa
|
|
addvi.b $w14, $w12, 14 # CHECK: error: instruction requires a CPU feature not currently enabled
|
|
|
|
.set msa
|
|
addvi.h $w26, $w17, 4
|
|
|
|
.set nomsa
|
|
addvi.w $w19, $w13, 11 # CHECK: error: instruction requires a CPU feature not currently enabled
|