bitfield-2.m: Make 'id' definition a typedef.

[gcc/testsuite/ChangeLog]
2004-09-08  Ziemowit Laski  <zlaski@apple.com>

	* objc.dg/bitfield-2.m: Make 'id' definition a typedef.
	* obj.dg/bitfield-4.m: Allow 'unsigned' in addition to 'unsigned int'
	in error message.
	* objc.dg/id-1.m: Attempt to define 'id' in an incompatible fashion.
	* objc.dg/method-6.m: Allow 'unsigned' in addition to 'unsigned int'
	in error message.
	* objc.dg/proto-qual-1.m: Protocol qualifiers now appear before the
	types they qualify.
	* objc.dg/type-size-2.m: Fix wording in comment.
	* objc.dg/va-meth-1.m: New test case.

From-SVN: r87196
This commit is contained in:
Ziemowit Laski 2004-09-08 18:48:56 +00:00 committed by Ziemowit Laski
parent 6cdd56724a
commit c509784d64
8 changed files with 93 additions and 11 deletions

View file

@ -1,3 +1,16 @@
2004-09-08 Ziemowit Laski <zlaski@apple.com>
* objc.dg/bitfield-2.m: Make 'id' definition a typedef.
* obj.dg/bitfield-4.m: Allow 'unsigned' in addition to 'unsigned int'
in error message.
* objc.dg/id-1.m: Attempt to define 'id' in an incompatible fashion.
* objc.dg/method-6.m: Allow 'unsigned' in addition to 'unsigned int'
in error message.
* objc.dg/proto-qual-1.m: Protocol qualifiers now appear before the
types they qualify.
* objc.dg/type-size-2.m: Fix wording in comment.
* objc.dg/va-meth-1.m: New test case.
2004-09-06 H.J. Lu <hongjiu.lu@intel.com>
PR c/16633:

View file

@ -4,7 +4,7 @@
/* { dg-options "-fnext-runtime -fsigned-char" } */
/* { dg-do run { target *-*-darwin* } } */
struct objc_object { struct objc_class *class_pointer; } *id;
typedef struct objc_object { struct objc_class *class_pointer; } *id;
extern void abort(void);
extern int strcmp(const char *, const char *);

View file

@ -19,11 +19,10 @@
@implementation WithBitfields {
char *isa; /* { dg-error "conflicting instance variable type .char \\*isa." } */
/* { dg-error "previous declaration of .void \\*isa." "" { target *-*-* } 12 } */
unsigned a: 5; /* { dg-error "conflicting instance variable type .unsigned a: 5." } */
/* { dg-error "previous declaration of .unsigned a: 3." "" { target *-*-* } 13 } */
unsigned a: 5; /* { dg-error "conflicting instance variable type .unsigned( int)? a: 5." } */
/* { dg-error "previous declaration of .unsigned( int)? a: 3." "" { target *-*-* } 13 } */
signed b: 4; /* This one is fine. */
int c: 3; /* { dg-error "conflicting instance variable type .int c: 3." } */
/* { dg-error "previous declaration of .int c: 5." "" { target *-*-* } 15 } */
}
@end

View file

@ -1,6 +1,7 @@
/* Test the id type warning. */
/* Test attempt to redefine 'id' in an incompatible fashion. */
/* { dg-do compile } */
typedef int id;
typedef int id; /* { dg-error "conflicting types for .id." } */
/* { dg-error "previous declaration of .id. was here" "" { target *-*-* } 0 } */
id b; /* { dg-warning "nexpected type for `id'" } */
id b;

View file

@ -19,7 +19,7 @@ void foo(void) {
Class receiver;
[receiver port]; /* { dg-warning "multiple methods named .\\+port. found" } */
/* { dg-warning "using .\\-\\(unsigned\\)port." "" { target *-*-* } 9 } */
/* { dg-warning "using .\\-\\(unsigned( int)?\\)port." "" { target *-*-* } 9 } */
/* { dg-warning "also found .\\+\\(Protocol \\*\\)port." "" { target *-*-* } 14 } */
[receiver starboard]; /* { dg-warning ".Class. may not respond to .\\+starboard." } */

View file

@ -43,10 +43,10 @@ static void scan_initial(const char *pattern) {
int main(void) {
meth = [proto descriptionForInstanceMethod: @selector(address:with:)];
scan_initial("O@%u@%u:%uNR@%uo^^S%u");
scan_initial("O@%u@%u:%uRN@%uo^^S%u");
CHECK_IF(offs3 == offs2 + aligned_sizeof(id) && totsize == offs3 + aligned_sizeof(unsigned));
meth = [proto descriptionForClassMethod: @selector(retainArgument:with:)];
scan_initial("Vv%u@%u:%uOo@%un^*%u");
scan_initial("Vv%u@%u:%uoO@%un^*%u");
CHECK_IF(offs3 == offs2 + aligned_sizeof(id) && totsize == offs3 + aligned_sizeof(char **));
return 0;
}

View file

@ -1,6 +1,6 @@
/* Make sure that array arguments to methods are given the size of pointers. */
/* As in the case of ivars, arrays without size (e.g., 'int []') are
encoded as pointers as well. */
encoded as pointers. */
/* Contributed by Ziemowit Laski <zlaski@apple.com>. */
/* { dg-do run } */

View file

@ -0,0 +1,69 @@
/* Based on objc/execute/va_method.m, by Nicola Pero */
/* { dg-do run } */
#include <objc/Object.h>
#include <stdarg.h>
#include <stdlib.h>
/* Test methods with "C-style" trailing arguments, with or without ellipsis. */
@interface MathClass: Object
/* sum positive numbers; -1 ends the list */
+ (int) sum: (int)firstNumber, int secondNumber, ...;
+ (int) prod: (int) firstNumber, int secondNumber, int thirdNumber;
+ (int) minimum: (int) firstNumber, ...;
@end
@implementation MathClass
+ (int) sum: (int)firstNumber, int secondNumber, ...
{
va_list ap;
int sum = 0, number = 0;
va_start (ap, secondNumber);
number = firstNumber + secondNumber;
while (number >= 0)
{
sum += number;
number = va_arg (ap, int);
}
va_end (ap);
return sum;
}
+ (int) prod: (int) firstNumber, int secondNumber, int thirdNumber {
return firstNumber * secondNumber * thirdNumber;
}
+ (int) minimum: (int)firstNumber, ...
{
va_list ap;
int minimum = 999, number = 0;
va_start (ap, firstNumber);
number = firstNumber;
while (number >= 0)
{
minimum = (minimum < number ? minimum: number);
number = va_arg (ap, int);
}
va_end (ap);
return minimum;
}
@end
int main (void)
{
if ([MathClass sum: 1, 2, 3, 4, 5, -1] != 15)
abort ();
if ([MathClass prod: 4, 5, 6] != 120)
abort ();
if ([MathClass minimum: 17, 9, 133, 84, 35, -1] != 9)
abort ();
return 0;
}