repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sval: extra: type information was being lost in ++/-- operations
[smatch.git]
/
validation
/
label-asm.c
blob
411020ac361bb72db82a54e33516fd668516e57d
1
#define barrier() __asm__ __volatile__(
""
: : :
"memory"
)
2
3
static void
f
(
void
)
4
{
5
barrier
();
6
l
:
7
barrier
();
8
}
9
/*
10
* check-name: Label followed by __asm__
11
* check-description: Sparse used to parse the __asm__ as modifying the label.
12
*/