Y
Hacker News
new
|
ask
|
show
|
jobs
by
appellations
246 days ago
Care to share a language where the compiler infers the semantic meaning of asserts and optimizes them away? I’ve never heard of this optimization.
3 comments
MindSpunk
246 days ago
Signed overflow is UB in C/C++ and several compilers will skip explicit overflow checks as a result. See:
https://godbolt.org/z/WehcWj3G5
link
mrkeen
246 days ago
C. This is a great thread:
https://mastodon.social/@regehr/113821964763012870
(That was one of my texts at uni)
link
Maxatar
246 days ago
C and C++
link