Is there a way (at least in GCC or clang's take on C and C++) to mark (un-)likely situations that doesn't involve conditionals?
Like, for example, in `(x + 1) % y` I want to be able to tell the compiler that x+1 is likely to be less than y so it can (perhaps automagically) do a fast path for that situation ![]()