Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
3083d3c550dedf68101dd9133905c3c7d35662bd
/
.
/
test
/
CodeGenObjC
/
object-incr-decr-1.m
blob: 19c12cb315a2e4379a3666349a36fc6f534209e8 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -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
;
}