Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c720a4d6a69b33bc69729ad269c251bd32215851
/
.
/
test
/
CodeGenObjC
/
object-incr-decr-1.m
blob: 25b9698860232c369befa7c5822c661b84b84309 [
file
] [
log
] [
blame
]
// RUN: clang-cc -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
;
}