Commit 9cc98b79 by H.J. Lu Committed by H.J. Lu

pr16660-1.c: Include "check.h".

2008-07-31  H.J. Lu  <hongjiu.lu@intel.com>

	* gcc.dg/torture/stackalign/pr16660-1.c: Include "check.h".
	(f): Align to 64 byte.  Use check instead of asm statement.

From-SVN: r138397
parent ee5d7272
2008-07-31 H.J. Lu <hongjiu.lu@intel.com>
* gcc.dg/torture/stackalign/pr16660-1.c: Include "check.h".
(f): Align to 64 byte. Use check instead of asm statement.
2008-07-31 Arnaud Charlet <charlet@adacore.com> 2008-07-31 Arnaud Charlet <charlet@adacore.com>
* gnat.dg/missing_acc_check.adb: New test. * gnat.dg/missing_acc_check.adb: New test.
......
/* { dg-do run } */ /* { dg-do run } */
#include "check.h"
void void
f () f ()
{ {
unsigned long tmp[4] __attribute__((aligned(16))); unsigned long tmp[4] __attribute__((aligned(64)));
asm("movaps %%xmm0, (%0)" : : "r" (tmp) : "memory"); check (&tmp, 64);
} }
int int
......
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