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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [obj-c++.dg/] [template-4.mm] - Diff between revs 308 and 338

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

Rev 308 Rev 338
/* Author:  Ziemowit Laski .  */
/* Author:  Ziemowit Laski .  */
/* { dg-do run } */
/* { dg-do run } */
/* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
/* { dg-xfail-run-if "Needs OBJC2 ABI" { *-*-darwin* && { lp64 && { ! objc2 } } } { "-fnext-runtime" } { "" } } */
#include "../objc-obj-c++-shared/Object1.h"
#include "../objc-obj-c++-shared/Object1.h"
#include "../objc-obj-c++-shared/next-mapping.h"
#include "../objc-obj-c++-shared/next-mapping.h"
#include 
#include 
#include 
#include 
#ifndef __NEXT_RUNTIME__
#ifndef __NEXT_RUNTIME__
#include 
#include 
#endif
#endif
#define CHECK_IF(expr) if(!(expr)) abort()
#define CHECK_IF(expr) if(!(expr)) abort()
template  class TestT
template  class TestT
{
{
public:
public:
  TYPE k;
  TYPE k;
  int abc(ARR *array) {
  int abc(ARR *array) {
    return [array count] * k;
    return [array count] * k;
  }
  }
  TestT(TYPE _k): k(_k) { }
  TestT(TYPE _k): k(_k) { }
};
};
template 
template 
const char *getDesc(void) {
const char *getDesc(void) {
  return [TYPE name];
  return [TYPE name];
}
}
@class Array;
@class Array;
template 
template 
int abc(TYPE *xyz, Array *array) {
int abc(TYPE *xyz, Array *array) {
  return [xyz count] + [array count];
  return [xyz count] + [array count];
}
}
@interface Array: Object {
@interface Array: Object {
  id *arr;
  id *arr;
  int count;
  int count;
}
}
+ (id)arrayWithObjects:(id)first, ... ;
+ (id)arrayWithObjects:(id)first, ... ;
- (int)count;
- (int)count;
@end
@end
@implementation Array
@implementation Array
+ (id)arrayWithObjects:(id)first, ... {
+ (id)arrayWithObjects:(id)first, ... {
  Array *a = [Array new];
  Array *a = [Array new];
  a->count = 0;
  a->count = 0;
  a->arr = (id *) calloc(8, sizeof(id));
  a->arr = (id *) calloc(8, sizeof(id));
  va_list args;
  va_list args;
  va_start (args, first);
  va_start (args, first);
  a->arr[a->count++] = first;
  a->arr[a->count++] = first;
  for (id el; el = va_arg(args, id); a->count++)
  for (id el; el = va_arg(args, id); a->count++)
    a->arr[a->count] = el;
    a->arr[a->count] = el;
  return a;
  return a;
}
}
- (int)count {
- (int)count {
  return count;
  return count;
}
}
@end
@end
int main(void) {
int main(void) {
  CHECK_IF(!strcmp ([@"Object" cString], getDesc()));
  CHECK_IF(!strcmp ([@"Object" cString], getDesc()));
  CHECK_IF(!strcmp ([@"Array" cString], getDesc()));
  CHECK_IF(!strcmp ([@"Array" cString], getDesc()));
  Array* a1 = [Array arrayWithObjects:@"One", @"Two", @"Three", nil];
  Array* a1 = [Array arrayWithObjects:@"One", @"Two", @"Three", nil];
  Array* a2 = [Array arrayWithObjects:@"Four", @"Five", nil];
  Array* a2 = [Array arrayWithObjects:@"Four", @"Five", nil];
  TestT t(7);
  TestT t(7);
  CHECK_IF(t.abc(a1) + t.abc(a2) == 35);
  CHECK_IF(t.abc(a1) + t.abc(a2) == 35);
  CHECK_IF(abc(a1, a2) * t.k == 35);
  CHECK_IF(abc(a1, a2) * t.k == 35);
  return 0;
  return 0;
}
}
#include "../objc-obj-c++-shared/Object1-implementation.h"
#include "../objc-obj-c++-shared/Object1-implementation.h"
 
 

powered by: WebSVN 2.1.0

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