mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 19:56:40 +00:00
9 lines
147 B
C
9 lines
147 B
C
![]() |
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
|
||
|
static inline void break_optimization(void *arg) {
|
||
|
__asm__ __volatile__("" : : "r" (arg) : "memory");
|
||
|
}
|
||
|
|
||
|
#endif
|