From: Richard Sandiford Date: Tue, 16 Jul 2019 08:40:55 +0000 (+0000) Subject: [mips] Fix ambiguous .md attribute uses X-Git-Tag: misc/cutover-git~3984 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f5b616591371edc9ec4f31f9b8c1d611b3b7577;p=thirdparty%2Fgcc.git [mips] Fix ambiguous .md attribute uses This patch is part of a series that fixes ambiguous attribute uses in .md files, i.e. cases in which attributes didn't use to specify an iterator, and in which could have different values depending on the iterator chosen. No behavioural change -- produces the same code as before. 2019-07-16 Richard Sandiford gcc/ * config/mips/micromips.md (*movep): Explicitly use for the mode attribute. From-SVN: r273508 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82a8f0b199ff..69a7f8e7f858 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-07-16 Richard Sandiford + + * config/mips/micromips.md (*movep): + Explicitly use for the mode attribute. + 2019-07-16 Jan Hubicka PR bootstrap/91176 diff --git a/gcc/config/mips/micromips.md b/gcc/config/mips/micromips.md index 9f8158ec1c9d..782d9d12e8cf 100644 --- a/gcc/config/mips/micromips.md +++ b/gcc/config/mips/micromips.md @@ -133,5 +133,5 @@ return "movep\t%2,%0,%z3,%z1"; } [(set_attr "type" "move") - (set_attr "mode" "") + (set_attr "mode" "") (set_attr "can_delay" "no")])