Comment on When static makes your C code 10 times fasterparentComments−jheriko5ywhat?!?!static doesn't imply the value can be known, only in some cases where its not modified in that compilation unit (which is trivial to detect with SSA)const is something else.
Comments
what?!?!
static doesn't imply the value can be known, only in some cases where its not modified in that compilation unit (which is trivial to detect with SSA)
const is something else.