1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
20 lines
233 B
Objective-C
20 lines
233 B
Objective-C
// 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;
|
|
}
|