bolt/deps/llvm-18.1.8/compiler-rt/test/safestack/utils.h

9 lines
147 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
#ifndef UTILS_H
#define UTILS_H
static inline void break_optimization(void *arg) {
__asm__ __volatile__("" : : "r" (arg) : "memory");
}
#endif