Commit 2b7482f8 by Vladimir Makarov Committed by Vladimir Makarov

pr68349.c (strlen): Rename to my_strlen.

2015-12-07  Vladimir Makarov  <vmakarov@redhat.com>

	* gcc.target/i386/pr68349.c (strlen): Rename to my_strlen.

From-SVN: r231370
parent a20b6691
2015-12-07 Vladimir Makarov <vmakarov@redhat.com>
* gcc.target/i386/pr68349.c (strlen): Rename to my_strlen.
2015-12-07 Nathan Sidwell <nathan@acm.org> 2015-12-07 Nathan Sidwell <nathan@acm.org>
* gcc.target/nvptx/abort.c: New. * gcc.target/nvptx/abort.c: New.
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/* { dg-options "-O2" } */ /* { dg-options "-O2" } */
int a, b; int a, b;
unsigned long strlen(); unsigned long my_strlen();
typedef struct sHyphenNode { typedef struct sHyphenNode {
char sepcnts[0]; char sepcnts[0];
struct sHyphenNode *Daughters[]; struct sHyphenNode *Daughters[];
...@@ -12,7 +12,7 @@ int GetIndex(); ...@@ -12,7 +12,7 @@ int GetIndex();
PHyphenNode c; PHyphenNode c;
void DoHyphens_Field_1() { void DoHyphens_Field_1() {
char d[300], e[300]; char d[300], e[300];
int z, f, l = strlen(); int z, f, l = my_strlen();
for (; z;) for (; z;)
; ;
for (; l; z++) { for (; l; z++) {
......
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