Commit b3c85d79 by Georg-Johann Lay Committed by Georg-Johann Lay

vector-subscript-1.c (main): Fix __builtin_memcpy arguments to honor sizeof(a).

	* gcc.c-torture/execute/vector-subscript-1.c (main): Fix
	__builtin_memcpy arguments to honor sizeof(a).

From-SVN: r181933
parent 5e50b799
2011-12-02 Georg-Johann Lay <avr@gjlay.de>
* gcc.c-torture/execute/vector-subscript-1.c (main): Fix
__builtin_memcpy arguments to honor sizeof(a).
2011-12-02 Joseph Myers <joseph@codesourcery.com>
* gcc.c-torture/execute/doloop-1.c,
......
......@@ -49,7 +49,7 @@ int main( int argc, char* argv[] )
if (*f(&val3, 3 ) != 4)
__builtin_abort ();
__builtin_memcpy(a, &val3, 16);
__builtin_memcpy (a, &val3, sizeof(a));
for(i = 0; i < 4; i++)
if (a[i] != i+1)
__builtin_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