diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-06 21:45:46 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-06 21:45:46 +0000 |
commit | 92ff811eaeb6184abd5b88036b17c2f951365349 (patch) | |
tree | 923dd78e27f34e494a556ec8b6b6373cd65a45f2 /gcc | |
parent | 67518851535a5303a126201b2c68508c369f96ef (diff) | |
download | ppe42-gcc-92ff811eaeb6184abd5b88036b17c2f951365349.tar.gz ppe42-gcc-92ff811eaeb6184abd5b88036b17c2f951365349.zip |
* configure.ac (hle prefixes): Remove .code64.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@191044 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 19 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.ac | 4 |
3 files changed, 13 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 804f16b54c1..7f89840358f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-09-06 Uros Bizjak <ubizjak@gmail.com> + + * configure.ac (hle prefixes): Remove .code64. + * configure: Regenerated. + 2012-09-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * config/arm/arm.c: Use CONST_INT_P, CONST_DOUBLE_P, REG_P, MEM_P, @@ -6,8 +11,7 @@ * config/arm/arm.md: Use CONST_INT_P, REG_P, MEM_P, CONST_DOUBLE_P consistently. * config/arm/neon.md: Use REG_P consistently. - * config/arm/predicates.md: Use CONST_INT_P, REG_P, MEM_P - consistently. + * config/arm/predicates.md: Use CONST_INT_P, REG_P, MEM_P consistently. * config/arm/thumb2.md: Use CONST_INT_P, REG_P consistently. * config/arm/vec-common.md: Use REG_P consistently. @@ -54,13 +58,13 @@ 2012-09-06 Chen Liqin <liqin.gcc@gmail.com> - * config/score/score.c: Remove TARGET_LEGITIMIZE_ADDRESS define - and score_legitimize_address function, use compiler default code instead. + * config/score/score.c: Remove TARGET_LEGITIMIZE_ADDRESS define and + score_legitimize_address function, use compiler default code instead. 2012-09-05 Jan Hubicka <jh@suse.cz> - * ipa-inline.c (want_inline_small_function_p): Use INLINE_HINT_loop_iterations - hint. + * ipa-inline.c (want_inline_small_function_p): Use + INLINE_HINT_loop_iterations hint. 2012-09-05 Andrew Pinski <apinski@cavium.com> @@ -137,8 +141,7 @@ 2012-09-05 Diego Novillo <dnovillo@google.com> PR bootstrap/54484 - * vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN - argument. + * vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN argument. 2012-09-05 Jakub Jelinek <jakub@redhat.com> diff --git a/gcc/configure b/gcc/configure index 47106e4f8e9..5bb409a3b4d 100755 --- a/gcc/configure +++ b/gcc/configure @@ -24417,9 +24417,7 @@ if test "${gcc_cv_as_ix86_hle+set}" = set; then : else gcc_cv_as_ix86_hle=no if test x$gcc_cv_as != x; then - $as_echo '.code64 - lock xacquire cmpxchg %esi, (%rcx) - ' > conftest.s + $as_echo 'lock xacquire cmpxchg %esi, (%ecx)' > conftest.s if { ac_try='$gcc_cv_as $gcc_cv_as_flags -o conftest.o conftest.s >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 (eval $ac_try) 2>&5 diff --git a/gcc/configure.ac b/gcc/configure.ac index 7042c9116ec..699c7904f7c 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3581,9 +3581,7 @@ foo: nop gcc_GAS_CHECK_FEATURE([hle prefixes], gcc_cv_as_ix86_hle,,, - [.code64 - lock xacquire cmpxchg %esi, (%rcx) - ],, + [lock xacquire cmpxchg %esi, (%ecx)],, [AC_DEFINE(HAVE_AS_IX86_HLE, 1, [Define if your assembler supports HLE prefixes.])]) |