blob: 151625569ca73aaf3af14b898f4a690d5d33f0b3 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// RUN: %clang_cc1 -analyze -analyzer-checker=core,experimental.core -triple i386-apple-darwin10 -fobjc-fragile-abi -analyzer-store=region %s
// Note that the target triple is important for this test case. It specifies that we use the
// fragile Objective-C ABI.
@interface Foo {
int x;
}
@end
@implementation Foo
static Foo* bar(Foo *p) {
if (p->x)
return ++p; // This is only valid for the fragile ABI.
return p;
}
@end
|