blob: 19c12cb315a2e4379a3666349a36fc6f534209e8 [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -emit-llvm %s -o %t
Fariborz Jahanian62a11a72009-07-16 22:04:59 +00002
3@interface Foo
4{
5 double d1,d3,d4;
6}
7@end
8
9Foo* foo()
10{
11 Foo *f;
12
13 // Both of these crash clang nicely
14 ++f;
15 --f;
16 f--;
17 f++;
18 return f;
19}