Skip to content

Commit 09ba2ef

Browse files
authored
Fix inconsistent capitalization in bitvector literal (#1320)
This is a warning in the upcoming Sail release.
1 parent b7c298a commit 09ba2ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model/extensions/FD/zfa_insts.sail

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function clause execute (FLI_D(constantidx, rd)) = {
123123
let bits : bits(64) = match constantidx {
124124
0b00000 => { 0xbff0000000000000 }, // -1.0
125125
0b00001 => { 0x0010000000000000 }, // minimum positive normal
126-
0b00010 => { 0x3Ef0000000000000 }, // 1.0 * 2^-16
126+
0b00010 => { 0x3ef0000000000000 }, // 1.0 * 2^-16
127127
0b00011 => { 0x3f00000000000000 }, // 1.0 * 2^-15
128128
0b00100 => { 0x3f70000000000000 }, // 1.0 * 2^-8
129129
0b00101 => { 0x3f80000000000000 }, // 1.0 * 2^-7

0 commit comments

Comments
 (0)