Mercurial > hg > CbC > CbC_llvm
view test/MC/Mips/set-softfloat-hardfloat.s @ 120:1172e4bd9c6f
update 4.0.0
author | mir3636 |
---|---|
date | Fri, 25 Nov 2016 19:14:25 +0900 |
parents | afa8332a0e37 |
children |
line wrap: on
line source
# RUN: llvm-mc %s -triple=mips-unknown-linux -mcpu=mips32r2 -mattr=+soft-float | \ # RUN: FileCheck %s .set hardfloat add.s $f2, $f2, $f2 sub.s $f2, $f2, $f2 .set softfloat # CHECK: .set hardfloat # CHECK: add.s $f2, $f2, $f2 # CHECK: sub.s $f2, $f2, $f2 # CHECK: .set softfloat