diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-13 19:15:15 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-13 19:15:15 +0000 |
commit | b6833dc97f5b555b2c0ceaa34b14919c84874686 (patch) | |
tree | 81e4b74d9f9e8be68acadb888e5a33678cc869ab /gcc/config/i386/i386.md | |
parent | 182c3534fbae6eb20fe407e4c0490d2434339fdd (diff) | |
download | gcc-b6833dc97f5b555b2c0ceaa34b14919c84874686.tar.gz |
* config/i386/i386.md (xbegin): Remove constraint from expander.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185351 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/i386.md')
-rw-r--r-- | gcc/config/i386/i386.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index a755574150e..eae26aedef9 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -18206,7 +18206,7 @@ (set_attr "memory" "unknown")]) (define_expand "xbegin" - [(set (match_operand:SI 0 "register_operand" "=a") + [(set (match_operand:SI 0 "register_operand" "") (unspec_volatile:SI [(match_dup 1)] UNSPECV_XBEGIN))] "TARGET_RTM" { @@ -18258,8 +18258,8 @@ { emit_insn (gen_xtest_1 ()); - ix86_expand_setcc (operands[0], EQ, gen_rtx_REG (CCZmode, FLAGS_REG), const0_rtx); - + ix86_expand_setcc (operands[0], EQ, + gen_rtx_REG (CCZmode, FLAGS_REG), const0_rtx); DONE; }) |