1# RUN: not llvm-mc %s -arch=mips -mcpu=mips32 -mattr=+fp64,-nooddspreg 2>&1 | \ 2# RUN: FileCheck %s 3 4 .module nooddspreg 5 add.s $f1, $f2, $f4 6# CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers 7 8 .set oddspreg 9 add.s $f1, $f2, $f4 10# CHECK-NOT: :[[@LINE-1]]:{{[0-9]+}}: error: -mno-odd-spreg prohibits the use of odd FPU registers 11 12 .set mips0 13 add.s $f1, $f2, $f4 14# CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers 15