Sign in
fuchsia
/
third_party
/
llvm-project
/
c3fd2a50ba1395b6c2240f6a688c6a1aa975a1fe
/
.
/
compiler-rt
/
test
/
safestack
/
utils.h
blob: b04e3bdc127ed341367bc4ae7333107220b07cfb [
file
] [
log
] [
blame
]
#ifndef
UTILS_H
#define
UTILS_H
static
inline
void
break_optimization
(
void
*
arg
)
{
__asm__ __volatile__
(
""
:
:
"r"
(
arg
)
:
"memory"
);
}
#endif