synchronize.c: New file.

2009-08-11  Andrew Haley  <aph@redhat.com>

	* gcc.target/arm/synchronize.c: New file.

From-SVN: r150698
This commit is contained in:
Andrew Haley 2009-08-12 15:55:19 +00:00 committed by Andrew Haley
parent 353a58f77c
commit 97804369a9
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-08-11 Andrew Haley <aph@redhat.com>
* gcc.target/arm/synchronize.c: New file.
2009-08-12 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/40980

View File

@ -0,0 +1,6 @@
/* { dg-final { scan-assembler "__sync_synchronize" { target arm*-*-linux-*eabi } } } */
void *foo (void)
{
__sync_synchronize();
}