OSDN Git Service

* gcc.dg/sequence-pt-1.c: Cast from pointer to integer
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 10 Nov 2000 00:01:29 +0000 (00:01 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 10 Nov 2000 00:01:29 +0000 (00:01 +0000)
        via size_t instead of int.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/sequence-pt-1.c

index e7c7978..6553d1e 100644 (file)
@@ -1,5 +1,8 @@
 2000-11-09  Richard Henderson  <rth@redhat.com>
 
+       * gcc.dg/sequence-pt-1.c: Cast from pointer to integer
+       via size_t instead of int.
+
        * gcc.c-torture/execute/string-opt-1.c: Make stub functions static.
        * gcc.c-torture/execute/string-opt-2.c: Likewise.
        * gcc.c-torture/execute/string-opt-3.c: Likewise.
index 1969781..ad4f789 100644 (file)
@@ -15,6 +15,8 @@ extern int fnb (int, int);
 extern int fnc (int *);
 extern int sprintf (char *, const char *, ...);
 
+typedef __SIZE_TYPE__ size_t;
+
 void
 foo (int a, int b, int n, int p, int *ptr, struct s *sptr,
      int *ap, int *bp, int **cp, char *ans)
@@ -30,9 +32,9 @@ foo (int a, int b, int n, int p, int *ptr, struct s *sptr,
   ap[++n] = bp[--n]; /* { dg-warning "undefined" "sequence point warning" } */
   cp[n][n] = cp[n][n]++; /* { dg-warning "undefined" "sequence point warning" { xfail *-*-* } } */
   cp[n][p] = cp[n][n++]; /* { dg-warning "undefined" "sequence point warning" } */
-  *ptr++ = (int)ptr++; /* { dg-warning "undefined" "sequence point warning" } */
+  *ptr++ = (size_t)ptr++; /* { dg-warning "undefined" "sequence point warning" } */
   sptr->a = sptr->a++; /* { dg-warning "undefined" "sequence point warning" { xfail *-*-* } } */
-  sptr->a = (int)(sptr++); /* { dg-warning "undefined" "sequence point warning" } */
+  sptr->a = (size_t)(sptr++); /* { dg-warning "undefined" "sequence point warning" } */
   *ptr++ = fn (*ptr); /* { dg-warning "undefined" "sequence point warning" } */
   a = b = a++; /* { dg-warning "undefined" "sequence point warning" } */
   b = a = --b; /* { dg-warning "undefined" "sequence point warning" } */