linux-packaging-mono/external/llvm/test/MC/Mips/set-softfloat-hardfloat.s
Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

13 lines
291 B
ArmAsm

# 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