Sign in
cobalt
/
cobalt
/
a3dd835b53c74ec0f3e791c01fbcde33bbf26c6d
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGenObjC
/
object-incr-decr-1.m
blob: c1181a21c72027ca0d15363f23d781994fa42162 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -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
;
}