brintos

brintos / llvm-project-archived public Read only

0
0
Text · 382 B · 5fb1308 Raw
11 lines · plain
1# RUN: not llvm-mc %s -triple=mips-unknown-linux -mcpu=mips32 -mattr=+nooddspreg 2>%t12# RUN: FileCheck %s < %t13 4  .set oddspreg5  sub.s $f1, $f2, $f26  # CHECK-NOT: :[[@LINE-1]]:{{[0-9]+}}: error: -mno-odd-spreg prohibits the use of odd FPU registers7 8  .set nooddspreg9  sub.s $f1, $f2, $f210  # CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers11