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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc/] [execute/] [static-1.m] - Diff between revs 154 and 816

Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
/* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
/* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
#include <objc/objc.h>
#include <objc/objc.h>
 
 
/* Test defining a static variable *inside* a class implementation */
/* Test defining a static variable *inside* a class implementation */
 
 
@interface Test
@interface Test
{
{
  Class isa;
  Class isa;
}
}
+ (int) test;
+ (int) test;
@end
@end
 
 
@implementation Test
@implementation Test
 
 
static int test = 1;
static int test = 1;
 
 
+ (int) test
+ (int) test
{
{
  return test;
  return test;
}
}
 
 
#ifdef __NEXT_RUNTIME__                                   
#ifdef __NEXT_RUNTIME__                                   
+ initialize { return self; }
+ initialize { return self; }
#endif
#endif
@end
@end
 
 
int main (void)
int main (void)
{
{
  if ([Test test] != 1)
  if ([Test test] != 1)
    {
    {
      abort ();
      abort ();
    }
    }
 
 
  return 0;
  return 0;
}
}
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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