mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
19 lines
214 B
Objective-C
19 lines
214 B
Objective-C
// 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;
|
|
}
|