Commit 59d1426d by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR testsuite/33946 (Testcase multi-ix.c generates call to (poisoned) bzero)

	PR testsuite/33946
	* gcc.c-torture/execute/multi-ix.c: Call memset instead of bzero.

From-SVN: r132115
parent 4a534152
2008-02-05 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR testsuite/33946
* gcc.c-torture/execute/multi-ix.c: Call memset instead of bzero.
2008-02-05 Uros Bizjak <ubizjak@gmail.com> 2008-02-05 Uros Bizjak <ubizjak@gmail.com>
PR target/35083 PR target/35083
...@@ -171,7 +171,7 @@ void z(int n, ...) ...@@ -171,7 +171,7 @@ void z(int n, ...)
while (n--) while (n--)
{ {
int *a = va_arg (list, int *); int *a = va_arg (list, int *);
__builtin_bzero (a, sizeof (l)); __builtin_memset (a, 0, sizeof (l));
} }
va_end (list); va_end (list);
} }
......
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