← Back to events
ActiveTech

Type Punning in C and C++

What happened

I had a bug that took me a while to track down. The problem was type punning. A pointer cast worked fine at -O0 and silently broke at -O2. The C vs C++ distinction here is genuinely treacherous, and most blog posts on the topic get it wrong.

Summary assembled by rule from the sources below

Why it's spreading

Sources

Community