aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/object-incr-decr-1.m
blob: 6369076174b37e430d86e9da4d6f18e9c01cc1f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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;
}