logoalt Hacker News

ueckertoday at 1:23 PM1 replyview on HN

That makes me worry that you code actually has more issues because with small _BitInt you would run into signed overflow more often.


Replies

ozgrakkurttoday at 2:29 PM

I use "-fno-strict-overflow" so it shouldn't be ub in any case. Also basically never use signed integers and I always use "checked" methods for doing aritmetic except performance critical loops.