Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
b64d0b1e6d5f500201d9d91526bc2bf14cb519d5
/
.
/
compiler-rt
/
test
/
safestack
/
utils.h
blob: b04e3bdc127ed341367bc4ae7333107220b07cfb [
file
] [
log
] [
blame
]
Peter Collingbourne
b64d0b1
2015-06-15 21:08:47 +0000
[
diff
] [
blame^
]
1
#ifndef
UTILS_H
2
#define
UTILS_H
3
4
static
inline
void
break_optimization
(
void
*
arg
)
{
5
__asm__ __volatile__
(
""
:
:
"r"
(
arg
)
:
"memory"
);
6
}
7
8
#endif