Commit 7085bfb6 by Uros Bizjak

configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Fix test.

        * configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Fix test.
        * configure: Regenerate.

From-SVN: r162015
parent bb021771
2010-07-09 Uros Bizjak <ubizjak@gmail.com>
* configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Fix test.
* configure: Regenerate.
2010-07-09 Jakub Jelinek <jakub@redhat.com> 2010-07-09 Jakub Jelinek <jakub@redhat.com>
Denys Vlasenko <dvlasenk@redhat.com> Denys Vlasenko <dvlasenk@redhat.com>
Bernhard Reutner-Fischer <aldot@gcc.gnu.org> Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
...@@ -44,7 +49,7 @@ ...@@ -44,7 +49,7 @@
* tree.c (type_hash_if_marked_p): Removed non-ggc_marked_p clause. * tree.c (type_hash_if_marked_p): Removed non-ggc_marked_p clause.
2010-07-09 Hariharan Sandanagobalane <hariharan@picochip.com> 2010-07-09 Hariharan Sandanagobalane <hariharan@picochip.com>
* config/picochip/picochip.md (commsTestPort): Emit more * config/picochip/picochip.md (commsTestPort): Emit more
efficient sequence for tstport instruction. efficient sequence for tstport instruction.
......
...@@ -23356,12 +23356,11 @@ else ...@@ -23356,12 +23356,11 @@ else
fi fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_as_ix86_rep_lock_prefix" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_as_ix86_rep_lock_prefix" >&5
$as_echo "$gcc_cv_as_ix86_rep_lock_prefix" >&6; } $as_echo "$gcc_cv_as_ix86_rep_lock_prefix" >&6; }
if test $gcc_cv_as_ix86_rep_lock_prefix = yes; then
$as_echo "#define HAVE_AS_IX86_REP_LOCK_PREFIX 1" >>confdefs.h
cat >>confdefs.h <<_ACEOF fi
#define HAVE_AS_IX86_REP_LOCK_PREFIX `if test $gcc_cv_as_ix86_rep_lock_prefix = yes; then echo 1; else echo 0; fi`
_ACEOF
;; ;;
......
...@@ -3328,10 +3328,9 @@ foo: nop ...@@ -3328,10 +3328,9 @@ foo: nop
gcc_cv_as_ix86_rep_lock_prefix,,, gcc_cv_as_ix86_rep_lock_prefix,,,
[rep movsl [rep movsl
lock addl %edi, (%eax,%esi) lock addl %edi, (%eax,%esi)
lock orl $0, (%esp)]) lock orl $0, (%esp)],,
AC_DEFINE_UNQUOTED(HAVE_AS_IX86_REP_LOCK_PREFIX, [AC_DEFINE(HAVE_AS_IX86_REP_LOCK_PREFIX, 1,
[`if test $gcc_cv_as_ix86_rep_lock_prefix = yes; then echo 1; else echo 0; fi`], [Define if the assembler supports 'rep <insn>, lock <insn>'.])])
[Define true if the assembler supports 'rep <insn>, lock <insn>'.])
;; ;;
......
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