string-opt-8.c (strncmp): Fix typo in return type.

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
This commit is contained in:
Aldy Hernandez 2002-06-27 18:23:33 +00:00 committed by Aldy Hernandez
parent 57694e4011
commit 759236dd7c
2 changed files with 6 additions and 1 deletions

View 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

View 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();