OSDN Git Service

[gcc/testsuite/ChangeLog]
authorzlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Sep 2004 18:48:56 +0000 (18:48 +0000)
committerzlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Sep 2004 18:48:56 +0000 (18:48 +0000)
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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87196 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/objc.dg/bitfield-2.m
gcc/testsuite/objc.dg/bitfield-4.m
gcc/testsuite/objc.dg/id-1.m
gcc/testsuite/objc.dg/method-6.m
gcc/testsuite/objc.dg/proto-qual-1.m
gcc/testsuite/objc.dg/type-size-2.m
gcc/testsuite/objc.dg/va-meth-1.m [new file with mode: 0644]

index 46b655f..05dfa72 100644 (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:
index 83b3174..6875c6c 100644 (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 *);
index 858bac2..4883497 100644 (file)
 @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
-
index abc17bc..ceb4d89 100644 (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;
index a4ca787..8bed64b 100644 (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." } */
index 0f1c310..126bae7 100644 (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;
 }
index 446de48..da6bdb8 100644 (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 } */
 
diff --git a/gcc/testsuite/objc.dg/va-meth-1.m b/gcc/testsuite/objc.dg/va-meth-1.m
new file mode 100644 (file)
index 0000000..751b648
--- /dev/null
@@ -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;
+}