In about every other case where something is classified as undefined behavior there're lots of objections - instead of admitting that code contains an error that should be queued for fixing people try to excuse undefined behavior by "explaining what happens".
I'm trying to gather all the most ingenious ways to make such excuses. Here're the ones I've heard so far:
Excuse 1 Here's a test program showing that behavior is this.
Why it's wrong This is observed behavior - no guarantee that the program doesn't silently send your passwords over the network when run on Sunday 13th. Actual behavior will depend on the implementation, context of calling the code, program data layout, other numerous factors.
Excuse 2 I carefully examined the emitted machine code and behavior is clearly this.
Why it's wrong C++ standard only requires behavior, not specific machine code. Even when compiling correct code the compiler can emit different code each time - for example it can allocate a variable on a register or in memory and clearly code for those will be different. In case of UB there're no requirements on behavior so whatever code could be emitted.
Excuse 3 I carefully validated the compiler, the runtime, the operating system and the processor and I'm sure that behavior is this.
Why it's wrong All that validation becomes useless once the compiler/runtime/OS/processor or a version of them changes. So code with UB is automatically unportable - even between versions of the same compiler which means no service packs and no updates to the tools and to the platform.
What other "excuses" of undefined behavior are there?