You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
291 B

# 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