* objc/execute/next_mapping.h: Update for C++. * obj-c++.dg/selector-1.mm: Move to... * obj-c++.dg/selector-4.mm: here... * obj-c++.dg/comp-types-1.mm: New. * obj-c++.dg/cxx-class-1.mm: New. * obj-c++.dg/cxx-ivars-1.mm: New. * obj-c++.dg/cxx-ivars-2.mm: New. * obj-c++.dg/cxx-ivars-3.mm: New. * obj-c++.dg/cxx-scope-1.mm: New. * obj-c++.dg/cxx-scope-2.mm: New. * obj-c++.dg/defs.mm: New. * obj-c++.dg/empty-private-1.mm: New. * obj-c++.dg/encode-1.mm: New. * obj-c++.dg/encode-2.mm: New. * obj-c++.dg/encode-3.mm: New. * obj-c++.dg/extern-c-1.mm: New. * obj-c++.dg/extra-semi.mm: New. * obj-c++.dg/fix-and-continue-2.mm: New. * obj-c++.dg/isa-field-1.mm: New. * obj-c++.dg/ivar-list-semi.mm: New. * obj-c++.dg/local-decl-1.mm: New. * obj-c++.dg/lookup-1.mm: New. * obj-c++.dg/lookup-2.mm: New. * obj-c++.dg/method-1.mm: New. * obj-c++.dg/method-2.mm: New. * obj-c++.dg/method-3.mm: New. * obj-c++.dg/method-4.mm: New. * obj-c++.dg/method-5.mm: New. * obj-c++.dg/method-6.mm: New. * obj-c++.dg/method-7.mm: New. * obj-c++.dg/no-extra-load.mm: New. * obj-c++.dg/overload-1.mm: New. * obj-c++.dg/pragma-1.mm: New. * obj-c++.dg/pragma-2.mm: New. * obj-c++.dg/private-1.mm: New. * obj-c++.dg/private-2.mm: New. * obj-c++.dg/proto-qual-1.mm: New. * obj-c++.dg/qual-types-1.mm: New. * obj-c++.dg/stubify-1.mm: New. * obj-c++.dg/stubify-2.mm: New. * obj-c++.dg/super-class-1.mm: New. * obj-c++.dg/super-class-2.mm: New. * obj-c++.dg/super-dealloc-1.mm: New. * obj-c++.dg/super-dealloc-2.mm: New. * obj-c++.dg/template-1.mm: New. * obj-c++.dg/template-2.mm: New. * obj-c++.dg/template-3.mm: New. * obj-c++.dg/template-4.mm: New. * obj-c++.dg/template-5.mm: New. * obj-c++.dg/template-6.mm: New. * obj-c++.dg/try-catch-1.mm: New. * obj-c++.dg/try-catch-2.mm: New. * obj-c++.dg/try-catch-3.mm: New. * obj-c++.dg/try-catch-4.mm: New. * obj-c++.dg/try-catch-5.mm: New. * obj-c++.dg/try-catch-6.mm: New. * obj-c++.dg/try-catch-7.mm: New. * obj-c++.dg/try-catch-8.mm: New. * obj-c++.dg/try-catch-9.mm: New. * obj-c++.dg/va-meth-1.mm: New. Co-Authored-By: Mike Stump <mrs@apple.com> From-SVN: r100181
82 lines
1.6 KiB
Plaintext
82 lines
1.6 KiB
Plaintext
/* Author: Ziemowit Laski <zlaski@apple.com>. */
|
|
|
|
/* { dg-do run } */
|
|
|
|
#include <objc/Object.h>
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __NEXT_RUNTIME__
|
|
/* The following ain't pretty, but does allow us to have just one copy
|
|
of next_mapping.h. */
|
|
#include "../objc/execute/next_mapping.h"
|
|
#else
|
|
#include <objc/NXConstStr.h>
|
|
#endif
|
|
|
|
#define CHECK_IF(expr) if(!(expr)) abort()
|
|
|
|
template <class ARR, class TYPE> class TestT
|
|
{
|
|
public:
|
|
TYPE k;
|
|
int abc(ARR *array) {
|
|
return [array count] * k;
|
|
}
|
|
TestT(TYPE _k): k(_k) { }
|
|
};
|
|
|
|
template <class TYPE>
|
|
const char *getDesc(void) {
|
|
return [TYPE name];
|
|
}
|
|
|
|
@class Array;
|
|
|
|
template <class TYPE>
|
|
int abc(TYPE *xyz, Array *array) {
|
|
return [xyz count] + [array count];
|
|
}
|
|
|
|
@interface Array: Object {
|
|
id *arr;
|
|
int count;
|
|
}
|
|
+ (id)arrayWithObjects:(id)first, ... ;
|
|
- (int)count;
|
|
@end
|
|
|
|
@implementation Array
|
|
+ (id)arrayWithObjects:(id)first, ... {
|
|
Array *a = [Array new];
|
|
a->count = 0;
|
|
a->arr = (id *) calloc(8, sizeof(id));
|
|
|
|
va_list args;
|
|
va_start (args, first);
|
|
|
|
a->arr[a->count++] = first;
|
|
|
|
for (id el; el = va_arg(args, id); a->count++)
|
|
a->arr[a->count] = el;
|
|
|
|
return a;
|
|
}
|
|
- (int)count {
|
|
return count;
|
|
}
|
|
@end
|
|
|
|
int main(void) {
|
|
CHECK_IF(!strcmp ([@"Object" cString], getDesc<Object>()));
|
|
CHECK_IF(!strcmp ([@"Array" cString], getDesc<Array>()));
|
|
|
|
Array* a1 = [Array arrayWithObjects:@"One", @"Two", @"Three", nil];
|
|
Array* a2 = [Array arrayWithObjects:@"Four", @"Five", nil];
|
|
|
|
TestT<Array, int> t(7);
|
|
CHECK_IF(t.abc(a1) + t.abc(a2) == 35);
|
|
CHECK_IF(abc(a1, a2) * t.k == 35);
|
|
return 0;
|
|
}
|