Commit ddaa7ff6 by Zachary Snow

zero-pad sized integrals no larger than 256 bits

parent 50a6966a
......@@ -237,7 +237,7 @@ showBasedDigits base size values kinds =
padList '0' sizeDigits digits
else if leadingXZ && size < 0 then
removeExtraPadding digits
else if leadingXZ || (32 > size && size > 0) then
else if leadingXZ || (256 >= size && size > 0) then
padList '0' sizeDigits digits
else
digits
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment