Ensure that the compiler does not move memory access across this method call For example in the following code: *some_memory_location = var_a; __compiler_memory_barrier(); uint32_t var_b = *some_other_memory_location The compiler will not move the load from `some_other_memory_location` above the memory barrier (which it otherwise might - even above the memory store!)