Commit 759236dd by Aldy Hernandez Committed by Aldy Hernandez

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
parent 57694e40
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> 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 * gcc.c-torture/execute/simd-2.c (i, j): Add initializer elements to
......
...@@ -231,7 +231,7 @@ int main () ...@@ -231,7 +231,7 @@ int main ()
/* When optimizing, all the above cases should be transformed into /* When optimizing, all the above cases should be transformed into
something else. So any remaining calls to the original function something else. So any remaining calls to the original function
should abort. */ should abort. */
static char * static int
strncmp(const char *s1, const char *s2, size_t n) strncmp(const char *s1, const char *s2, size_t n)
{ {
abort(); abort();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment