This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Qualify operand mode in i386.md to suppress warning
- From: Samuel Tardieu <sam at rfc1149 dot net>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sat, 27 Oct 2007 12:52:53 +0200
- Subject: [PATCH] Qualify operand mode in i386.md to suppress warning
- Organisation: RFC1149 (see http://www.rfc1149.net/)
2007-10-27 Samuel Tardieu <sam@rfc1149.net>
* i386.md (x86_movsicc_0_m1): Qualify mode of ix86_carry_flag_operator
to suppress warning.
---
gcc/config/i386/i386.md | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 1681883..d649afe 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -19554,7 +19554,7 @@
(define_insn "x86_movsicc_0_m1"
[(set (match_operand:SI 0 "register_operand" "=r")
- (if_then_else:SI (match_operand 1 "ix86_carry_flag_operator" "")
+ (if_then_else:SI (match_operand:SI 1 "ix86_carry_flag_operator" "")
(const_int -1)
(const_int 0)))
(clobber (reg:CC FLAGS_REG))]
--
1.5.3.4