blob: 37b705ea193a073e6abc0fd822aba7caf07ed640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* Check if objc_super stack variables are created correctly (and
not clobbered by other values). */
/* Contributed by Ziemowit Laski <zlaski@apple.com>. */
/* { dg-options "-std=c99" } */
/* { dg-do run } */
/* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
#include "../objc-obj-c++-shared/Object1.h"
extern void abort(void);
#define CHECK_IF(expr) if(!(expr)) abort();
typedef struct _Point {
float x;
float y;
} Point;
Point MakePoint ( float x , float y ) {
Point p;
p.x = x;
p.y = y;
return p;
}
@interface Base: Object
- ( void ) translateOriginToPoint : ( Point ) translation ;
@end
@interface Derived : Base
- ( void ) scrollToPoint : ( Point ) newOrigin ;
- ( void ) translateOriginToPoint : ( Point ) translation ;
@end
int blort;
float result;
@implementation Base
- ( void ) translateOriginToPoint : ( Point ) translation {
result = translation.x + translation.y;
}
@end
@implementation Derived
- ( void ) scrollToPoint : ( Point ) newOrigin {
float transDeltaX =newOrigin.x, transDeltaY =newOrigin.y ;
Point w;
if ( ! blort ) {
w.x = transDeltaX ; w.y = transDeltaY ;
[ super translateOriginToPoint : w ] ;
return;
}
[ super translateOriginToPoint : MakePoint ( transDeltaX , transDeltaY ) ] ;
return;
}
- (void) translateOriginToPoint : ( Point ) translation {
/* This should never be called. */
CHECK_IF(0);
}
@end
int main(void) {
Derived *v = [Derived new];
float r0 = 1.5 + 1.5;
blort = 1;
[v scrollToPoint: MakePoint(1.5, 1.5)];
CHECK_IF(result == r0);
blort = 0;
[v scrollToPoint: MakePoint(1.5, 1.5)];
CHECK_IF(result == r0);
blort = 1;
[v scrollToPoint: MakePoint(1.5, 1.5)];
CHECK_IF(result == r0);
[v free];
return 0;
}
#include "../objc-obj-c++-shared/Object1-implementation.h"
|