mirror of git://gcc.gnu.org/git/gcc.git
fail11-frag.c: Adjust to not look like memset.
2012-07-13 Richard Guenther <rguenther@suse.de> * testsuite/libmudflap.c/fail11-frag.c: Adjust to not look like memset. * testsuite/libmudflap.c/fail12-frag.c: Likewise. From-SVN: r189463
This commit is contained in:
parent
a8ab21e5e6
commit
b61d865775
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-07-13 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
|
* testsuite/libmudflap.c/fail11-frag.c: Adjust to not look like memset.
|
||||||
|
* testsuite/libmudflap.c/fail12-frag.c: Likewise.
|
||||||
|
|
||||||
2012-05-29 Joseph Myers <joseph@codesourcery.com>
|
2012-05-29 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* mf-impl.h: Fix typo.
|
* mf-impl.h: Fix typo.
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ y = x;
|
||||||
while (i--)
|
while (i--)
|
||||||
{
|
{
|
||||||
++x;
|
++x;
|
||||||
*x = 0;
|
*x = i;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ y = x;
|
||||||
while (i--)
|
while (i--)
|
||||||
{
|
{
|
||||||
++x;
|
++x;
|
||||||
*x = 0;
|
*x = i;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue