string-opt-8.c (strncmp): Fix typo in return type.
authorAldy Hernandez <aldyh@redhat.com>
Thu, 27 Jun 2002 18:23:33 +0000 (18:23 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Thu, 27 Jun 2002 18:23:33 +0000 (18:23 +0000)
2002-06-27  Aldy Hernandez  <aldyh@redhat.com>

        * gcc.c-torture/execute/string-opt-8.c (strncmp): Fix typo in
        return type.

From-SVN: r55035

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/string-opt-8.c

index 829d0d5062923eb0ca3965b9b5a3f89358e226a4..55d809bb2d38b668eba72b80439f5c4f1b74949f 100644 (file)
@@ -1,3 +1,8 @@
+2002-06-27  Aldy Hernandez  <aldyh@redhat.com>
+
+        * gcc.c-torture/execute/string-opt-8.c (strncmp): Fix typo in
+        return type.
+
 Thu Jun 27 15:23:21 2002  J"orn Rennecke <joern.rennecke@superh.com>
 
        * gcc.c-torture/execute/simd-2.c (i, j): Add initializer elements to
index bd6f87d74384d406af891ebf222ddae8373addc8..0e0e7bb5fb8c1760459d822ef78eb722ab5e7e1e 100644 (file)
@@ -231,7 +231,7 @@ int main ()
 /* When optimizing, all the above cases should be transformed into
    something else.  So any remaining calls to the original function
    should abort.  */
-static char *
+static int
 strncmp(const char *s1, const char *s2, size_t n)
 {
   abort();