Hacker News new | ask | show | jobs
by JonChesterfield 970 days ago
Glad assume(expr) is available, if it maps onto builtin-expect but confused by the UB reference. Why would taking the less likely path be undefined behaviour?

Edit. It's because assume does not map to expect, it maps to builtin_assume. So that's just another way to write undefined c++.

1 comments

Ah, I thought it was the same, I spend most of my C++ coding time on VC++ anyway.