Hi,
As with the earlier patch for sh
( https://gcc.gnu.org/ml/gcc-patches/2014-09/msg01627.html ), this fixes the
fallout caused by https://gcc.gnu.org/ml/gcc-patches/2014-09/msg01615.html.
These are build failures, and the fixes are "obvious", but I don't know
my way around the failing ports, so I'd like an explicit maintainer ack.
For testing, I've just checked that the build error is resolved.
Ok?
Thanks,
James
---
2014-09-19 James Greenhalgh <[email protected]>
* config/bfin/bfin.md: Fix use of constraints in define_split.
diff --git a/gcc/config/bfin/bfin.md b/gcc/config/bfin/bfin.md
index f5e64d3ef6914b408fa68b044ad122e676e2d7ff..9d57b9d3d392179effb68c1a511afaf8e0b43462 100644
--- a/gcc/config/bfin/bfin.md
+++ b/gcc/config/bfin/bfin.md
@@ -1970,15 +1970,15 @@ (define_insn "loop_end"
(define_split
[(set (pc)
- (if_then_else (ne (match_operand:SI 0 "nondp_reg_or_memory_operand" "")
+ (if_then_else (ne (match_operand:SI 0 "nondp_reg_or_memory_operand")
(const_int 1))
- (label_ref (match_operand 1 "" ""))
+ (label_ref (match_operand 1 ""))
(pc)))
(set (match_dup 0)
(plus (match_dup 0)
(const_int -1)))
(unspec [(const_int 0)] UNSPEC_LSETUP_END)
- (clobber (match_scratch:SI 2 "=&r"))]
+ (clobber (match_scratch:SI 2))]
"memory_operand (operands[0], SImode) || splitting_loops"
[(set (match_dup 2) (match_dup 0))
(set (match_dup 2) (plus:SI (match_dup 2) (const_int -1)))