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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2007-10-30-Volatile.c
blob
52b47284c25ee6c9283013aa941db64efff74d2a
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -Wall -Wno-unused-but-set-variable -Werror
2
void
bork
(
void
) {
3
char
*
volatile
p
=
0
;
4
volatile
int
cc
=
0
;
5
p
+=
cc
;
6
}