[multiple changes]

2009-12-11  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

	PR target/42263
	2009-08-11  Andrew Haley  <aph@redhat.com>
	* config/arm/arm.c (arm_init_libfuncs): Add __sync_synchronize.

From-SVN: r155171
This commit is contained in:
Ramana Radhakrishnan 2009-12-11 17:37:34 +00:00
parent a5feed798a
commit 09d9097264
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-12-11 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
PR target/42263
2009-08-11 Andrew Haley <aph@redhat.com>
* config/arm/arm.c (arm_init_libfuncs): Add __sync_synchronize.
2009-12-11 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
PR target/41196
@ -6,7 +12,6 @@
* config/arm/neon.md (neon_vshll_n<mode>): Checking Bounds
fixed.
2009-12-11 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
2009-10-05 Doug Kwan <dougkwan@google.com>
@ -191,10 +196,9 @@
(*cmp_ssub_si): Ditto.
(*cmp_ssub_sidi): Ditto.
>>>>>>> .r155152
2009-11-18 Matthias Klose <doko@ubuntu.com>
* config.gcc: Update ARM --with-fpu option list.
* config.gcc: Update ARM --with-fpu option list.
2009-11-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>

View File

@ -53,6 +53,7 @@
#include "debug.h"
#include "langhooks.h"
#include "df.h"
#include "libfuncs.h"
/* Forward definitions of types. */
typedef struct minipool_node Mnode;
@ -922,6 +923,9 @@ arm_init_libfuncs (void)
set_optab_libfunc (umod_optab, DImode, NULL);
set_optab_libfunc (smod_optab, SImode, NULL);
set_optab_libfunc (umod_optab, SImode, NULL);
if (TARGET_AAPCS_BASED)
synchronize_libfunc = init_one_libfunc ("__sync_synchronize");
}
/* On AAPCS systems, this is the "struct __va_list". */