Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/gnu/dist/gcc4/gcc/config/vax Pull up following revision(s...
details: https://anonhg.NetBSD.org/src/rev/8c233e33aeac
branches: netbsd-6
changeset: 774325:8c233e33aeac
user: riz <riz%NetBSD.org@localhost>
date: Thu Jul 12 18:29:57 2012 +0000
description:
Pull up following revision(s) (requested by ragge in ticket #411):
gnu/dist/gcc4/gcc/config/vax/builtins.md: revision 1.3
Bugfix builtin ffs, fixes PR port-vax/46677, fix from Paul Koning.
diffstat:
gnu/dist/gcc4/gcc/config/vax/builtins.md | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (20 lines):
diff -r b8098d181071 -r 8c233e33aeac gnu/dist/gcc4/gcc/config/vax/builtins.md
--- a/gnu/dist/gcc4/gcc/config/vax/builtins.md Thu Jul 12 17:17:26 2012 +0000
+++ b/gnu/dist/gcc4/gcc/config/vax/builtins.md Thu Jul 12 18:29:57 2012 +0000
@@ -25,7 +25,7 @@
"
{
rtx label = gen_label_rtx ();
- emit_insn (gen_ffssi2_internal (operands[0], operands[1], operands[0]));
+ emit_insn (gen_ffssi2_internal (operands[0], operands[1], operands[1]));
emit_jump_insn (gen_bne (label));
emit_insn (gen_negsi2 (operands[0], const1_rtx));
emit_label (label);
@@ -36,6 +36,6 @@
(define_insn "ffssi2_internal"
[(set (match_operand:SI 0 "nonimmediate_operand" "=g")
(ffs:SI (match_operand:SI 1 "general_operand" "nrQ")))
- (set (cc0) (match_operand:SI 2 "nonimmediate_operand" "0"))]
+ (set (cc0) (ffs:SI (match_operand:SI 2 "general_operand" "1")))]
""
"ffs $0,$32,%1,%0")
Home |
Main Index |
Thread Index |
Old Index