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] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
2009-02-05-VolatileProp.m
blob
d639fac50bb06f5f1efc810c92f42c810dcce006
1
// RUN: %clang -fexceptions -S -emit-llvm %s -o /dev/null -pedantic-errors
2
3
void foo(const unsigned short *);
4
void bar(void) {
5
unsigned short *s[3];
6
int i;
7
@try { } @catch (id anException) { }
8
foo(2+s[i]);
9
}