repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AA] Rename CaptureInfo -> CaptureAnalysis (NFC) (#116842)
[llvm-project.git]
/
compiler-rt
/
test
/
safestack
/
utils.h
blob
b04e3bdc127ed341367bc4ae7333107220b07cfb
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