Mercurial > hg > CbC > CbC_llvm
view test/MC/Mips/update-module-level-options.s @ 111:3e4d254d74d9
resolve some warnings
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 02 Feb 2016 19:38:53 +0900 |
parents | afa8332a0e37 |
children | c2174574ed3a |
line wrap: on
line source
# RUN: not llvm-mc %s -arch=mips -mcpu=mips32 -mattr=+fp64,-nooddspreg 2>&1 | \ # RUN: FileCheck %s .module nooddspreg add.s $f1, $f2, $f4 # CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers .set oddspreg add.s $f1, $f2, $f4 # CHECK-NOT: :[[@LINE-1]]:{{[0-9]+}}: error: -mno-odd-spreg prohibits the use of odd FPU registers .set mips0 add.s $f1, $f2, $f4 # CHECK: :[[@LINE-1]]:9: error: -mno-odd-spreg prohibits the use of odd FPU registers