3 ms·
No, they didn't. UB is a cop out and inserting yield is just plain bad. Locking up one or more threads in an implementation defined manner would be the outcome
by fc417fc802 8d ago
No, they didn't. UB is a cop out and inserting yield is just plain bad. Locking up one or more threads in an implementation defined manner would be the outcome of least surprise (I already know it's going to lock up at least the one thread).
- mitxela 7d agoThe standards intended interpretation of UB was always intended to be something like "implementation defined, no documentation required" to allow for implementation weirdness, even unpredictable ones. It was compiler authors who decided do abuse this allowance to do really unintuitive things instead of weird platform weirdness.
- IcyWindows 7d ago100% There are implementations that have sane behavior for "UB" instead of making it an excuse to misbehave. The ISO standard is not the same as a language from a single vendor.
- mitxela 7d agoIIRC a lot of it was benchmark gaming between GCC and LLVM.
- cryptonector 7d agoBecause one can bleeping see that that's what would happen. Locking up a thread isn't a good thing, but it's a lot better than UB. There was never a need to make this UB.