Settings

Theme

“That is either genius, or a seriously diseased mind.” – Linus Torvalds

lkml.org

76 points by sooham 7 years ago · 8 comments

Reader

roelschroeven 7 years ago

In that post Linus says something I don't understand in that post:

"... So with a constant, we have

  sizeof( 1 ? NULL : (int *) 1)
  
and the rule is that if one of the sides of a ternary operation with pointers is NULL, the end result is the other type (int *)."

Is Linus saying that the condition of the ternary operation doesn't matter if one of the sides is NULL? That it then always evaluates to the other side? That's not what happens when I try it. Or are there special rules when sizeof is applied?

  • roelschroeven 7 years ago

    Oh, I get it now: Linus wasn't talking about the values, but about the types. In this case, the result will be a NULL pointer of type (int *).

    Sorry, nothing to see here.

    • cbsks 7 years ago

      I just had the same confusion. Thanks for figuring it out so I didn’t have to!

rurban 7 years ago

I really need this for libc optimizations. So far it only worked in C++ mode or newer clang's, but not in gcc.

msarnoff 7 years ago

Isn't this what GCC's `__builtin_constant_p()` does?

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection