mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
tests: Add a boundary case test just in case
1.9375 has all mantissa bits set; we only tested powers of two before.
This commit is contained in:
parent
bf33cb6f32
commit
9561bec138
1 changed files with 2 additions and 0 deletions
|
@ -451,10 +451,12 @@ TEST_CASE_FIXTURE(AssemblyBuilderA64Fixture, "FPImm")
|
|||
SINGLE_COMPARE(fmov(d0, 0), 0x2F00E400);
|
||||
SINGLE_COMPARE(fmov(d0, 0.125), 0x1E681000);
|
||||
SINGLE_COMPARE(fmov(d0, -0.125), 0x1E781000);
|
||||
SINGLE_COMPARE(fmov(d0, 1.9375), 0x1E6FF000);
|
||||
|
||||
SINGLE_COMPARE(fmov(q0, 0), 0x4F000400);
|
||||
SINGLE_COMPARE(fmov(q0, 0.125), 0x4F02F400);
|
||||
SINGLE_COMPARE(fmov(q0, -0.125), 0x4F06F400);
|
||||
SINGLE_COMPARE(fmov(q0, 1.9375), 0x4F03F7E0);
|
||||
|
||||
CHECK(!AssemblyBuilderA64::isFmovSupported(-0.0));
|
||||
CHECK(!AssemblyBuilderA64::isFmovSupported(0.12389));
|
||||
|
|
Loading…
Add table
Reference in a new issue