On Fri, Jan 24, 2020 at 12:25 AM Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote: > > Just for curiosity's sake. What does clang actually do in that case? This shouldn't necessarily be clang-specific. If the variable itself is 'const', it might go into a read-only section. So trying to modify it will quite possibly hit a SIGSEGV in user space (and in kernel space cause an oops). Note that that is different from a const pointer to something that wasn't originally const. That's just a "error out at compile time if somebody tries to write through it", but the const'ness can be cast away, because all the 'const' really said was that the object can't be modified through _that_ pointer, not in general. (That also means that the compiler can't necessarily even optimize multiple accesses through a const pointer away, because the object might be modified through another pointer that aliases the const one - you'd need to also mark it "restrict" to tell the compiler that no other pointer will alias). Linus