OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [property/] [fsf-property-basic.m] - Blame information for rev 704

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 704 jeremybenn
/* Basic test, auto-generated getter/setter based on property name.  */
2
/* { dg-do run } */
3
/* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
4
 
5
extern int printf (char *fmt,...) ;
6
extern void abort (void);
7
 
8
#include <objc/objc.h>
9
#include <objc/runtime.h>
10
 
11
@interface Bar
12
{
13
@public
14
  Class isa;
15
  int FooBar;
16
}
17
+ (id) initialize;
18
+ (id) alloc ;
19
- (id) init;
20
- (int) whatIsFooBar;
21
@property int FooBar;
22
@end
23
 
24
@implementation Bar
25
 
26
+initialize { return self;}
27
+ (id) alloc { return class_createInstance (self, 0); }
28
 
29
- (id) init {return self;}
30
 
31
- (int) whatIsFooBar { return self->FooBar; }
32
@synthesize FooBar;
33
@end
34
 
35
int main(int argc, char *argv[]) {
36
  int res;
37
  Bar *f = [[Bar alloc] init];
38
 
39
  /* First, establish that the property getter & setter have been synthesized
40
     and operate correctly.  */
41
  [f setFooBar:1];
42
 
43
  if ([f whatIsFooBar] != 1)
44
    { printf ("setFooBar did not set FooBar\n"); abort ();}
45
 
46
  res = [f FooBar];
47
 
48
  if (res != 1 )
49
    { printf ("[f FooBar] = %d\n",  res); abort ();}
50
 
51
  /* Now check the short-cut object.property syntax.  */
52
  /* Read... */
53
  res = f.FooBar;
54
  if (res != 1 )
55
    { printf ("f.FooBar = %d\n",  res); abort ();}
56
 
57
  /* .... write. */
58
  f.FooBar = 0;
59
  /* printf ("seems OK\n",  res); */
60
  return f.FooBar;
61
}
62
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.