Hacker News new | ask | show | jobs
by ycombobreaker 1646 days ago
In my experience, the key is that you've triggered two decisions off of a single boolean condition. A single ternary will be a cmov, but two ternaries become a branch.
1 comments

> but two ternaries become a branch

I need to use inline assembly because of this.