Commit 905cf57d by Jakub Jelinek Committed by Jakub Jelinek

pr36822.c: Avoid cast to pointer from integer of different size warning with -m31.

	* gcc.target/s390/pr36822.c: Avoid cast to pointer from integer
	of different size warning with -m31.

From-SVN: r141462
parent 723a7ced
2008-10-30 Jakub Jelinek <jakub@redhat.com>
* gcc.target/s390/pr36822.c: Avoid cast to pointer from integer
of different size warning with -m31.
PR middle-end/37730
* gcc.dg/vect/pr37730.c: New test.
......
......@@ -9,7 +9,7 @@ int boo()
{
struct {
unsigned char pad[4096];
unsigned long long bar;
unsigned long bar;
} *foo;
asm volatile( "" : "=m" (*(unsigned long long*)(foo->bar))
: "a" (&foo->bar));
......
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