diff options
author | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-10 12:16:00 +0000 |
---|---|---|
committer | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-10-10 12:16:00 +0000 |
commit | 5d6f9cead0ca832554bd85598aedd6a6dde5bb53 (patch) | |
tree | 6e365d7d6a8e3f1ea20ab1492c48995128635b41 /gcc/config/ia64 | |
parent | 49ecfd71f7b05fa2b3791ab1133dcf2c877424aa (diff) | |
download | gcc-5d6f9cead0ca832554bd85598aedd6a6dde5bb53.tar.gz |
PR target/77738
* config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
pseudo is not DImode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@240918 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r-- | gcc/config/ia64/ia64.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md index 7bc21fd8ca4..afde75aa74d 100644 --- a/gcc/config/ia64/ia64.md +++ b/gcc/config/ia64/ia64.md @@ -3959,6 +3959,9 @@ (use (match_operand 1 "" ""))] ; label "" { + if (GET_MODE (operands[0]) != DImode) + FAIL; + emit_jump_insn (gen_doloop_end_internal (gen_rtx_REG (DImode, AR_LC_REGNUM), operands[1])); DONE; |