Re: [RFC] LKMM: Add volatile_if()
From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Date: 2021-06-06 23:46:14
Also in:
linux-toolchains, lkml
From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Date: 2021-06-06 23:46:14
Also in:
linux-toolchains, lkml
On 07/06/2021 01.39, Rasmus Villemoes wrote:
memory". Replacing with a call to an extern function marked pure does indeed cause gcc to cache the value of y*z, so in theory this should be possible, if one could convince gcc to "trust me, this really is a pure function".
Don't know why I didn't think to check before sending, but FWIW clang doesn't need convincing, it already takes the __pure at face value and caches y*z. Rasmus