repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
2009-02-05-VolatileProp.m
blob
01aecfd9fe4d2444f5684eb5d38fd242b2218d16
1
// RUN: %clang -fexceptions -S -emit-llvm %s -o /dev/null -pedantic-errors
2
// rdar://6551276
3
4
void foo(const unsigned short *);
5
void bar(void) {
6
unsigned short *s[3];
7
int i;
8
@try { } @catch (id anException) { }
9
foo(2+s[i]);
10
}