Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
337cba4b3e17b98cfa512dfd12e57f4ccb0859be
/
.
/
test
/
CodeGenObjC
/
object-incr-decr-1.m
blob: 7e1870e1e3460cc102e5ec340b95374adf611b6a [
file
] [
log
] [
blame
]
// RUN: clang -cc1 -triple i386-apple-darwin9 -emit-llvm %s -o %t
@interface
Foo
{
double
d1
,
d3
,
d4
;
}
@end
Foo
*
foo
()
{
Foo
*
f
;
// Both of these crash clang nicely
++
f
;
--
f
;
f
--;
f
++;
return
f
;
}