aboutsummaryrefslogtreecommitdiff
path: root/test/armv8
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-12-27 19:01:58 -0800
committeriximeow <me@iximeow.net>2021-12-27 19:01:58 -0800
commit4e28a1078e93c15bc8b9076504f2eba4656ccf76 (patch)
tree5aae344aedc673cbc28d0e39714daebc3710be4a /test/armv8
parent03b3b1b917cb138e1ef05b302a41e198d933323f (diff)
fcmp/fcmpe fixes
Diffstat (limited to 'test/armv8')
-rw-r--r--test/armv8/a64.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/armv8/a64.rs b/test/armv8/a64.rs
index 11b42d5..4ee0bff 100644
--- a/test/armv8/a64.rs
+++ b/test/armv8/a64.rs
@@ -3843,8 +3843,8 @@ fn test_openblas_simd_ops() {
([0x20, 0x1c, 0x60, 0x1e], "fcsel d0, d1, d0, ne"),
([0xef, 0x1d, 0x60, 0x1e], "fcsel d15, d15, d0, ne"),
([0x70, 0x22, 0x60, 0x1e], "fcmpe d19, d0"),
- ([0xd8, 0x22, 0x60, 0x1e], "fcmpe d22, 0.0"),
- ([0x08, 0x23, 0x60, 0x1e], "fcmp d24, 0.0"),
+ ([0xd8, 0x22, 0x60, 0x1e], "fcmpe d22, 0x0"), // note, 0x0, not 0.0
+ ([0x08, 0x23, 0x60, 0x1e], "fcmp d24, 0x0"), // note, 0x0, not 0.0
([0x80, 0x28, 0x60, 0x1e], "fadd d0, d4, d0"),
([0x22, 0x4c, 0x60, 0x1e], "fcsel d2, d1, d0, mi"),
([0x21, 0x5c, 0x60, 0x1e], "fcsel d1, d1, d0, pl"),