Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
ab183dff7ed681f7140a8e32510c4f619b791d2e
/
.
/
test
/
CodeGenObjC
/
object-incr-decr-1.m
blob: 6369076174b37e430d86e9da4d6f18e9c01cc1f3 [
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
;
}