brintos

brintos / llvm-project-archived public Read only

0
0
Text · 603 B · 9ded5f6 Raw
22 lines · plain
1# RUN: not llvm-mc %s -mcpu=mips32 -mattr=+dspr2 -triple mips-unknown-linux 2>%t12# RUN: FileCheck %s < %t13 4  lbux    $7, $10($11)5  append  $4, $10, 26 7  .set nodsp8  lbux    $6, $10($11)9  # CHECK: error: instruction requires a CPU feature not currently enabled10 11  .set dsp12  lbux    $5, $10($11)13  # CHECK-NOT: error: instruction requires a CPU feature not currently enabled14 15  .set nodsp16  append  $3, $10, 217  # CHECK: error: instruction requires a CPU feature not currently enabled18 19  .set dspr220  append  $2, $10, 221  # CHECK-NOT: error: instruction requires a CPU feature not currently enabled22