aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-07-07 15:51:27 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-07-07 15:51:27 +0000
commit273fc01eaf3159757426bfd88c231afddac3517f (patch)
tree03f3930c6c379b1e7e96b7284332a4fbcc31d3ca /gcc/config
parentfb7d7712f6ab49440fab72b70179b2b209b26de2 (diff)
downloadgcc-273fc01eaf3159757426bfd88c231afddac3517f.zip
gcc-273fc01eaf3159757426bfd88c231afddac3517f.tar.gz
gcc-273fc01eaf3159757426bfd88c231afddac3517f.tar.bz2
h8300.md: Use gen_int_mode instead of GEN_INT (trunc_int_for_mode (...)).
* config/h8300/h8300.md: Use gen_int_mode instead of GEN_INT (trunc_int_for_mode (...)). From-SVN: r69043
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/h8300/h8300.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md
index 19dc9c8..8a1ef34 100644
--- a/gcc/config/h8300/h8300.md
+++ b/gcc/config/h8300/h8300.md
@@ -4491,7 +4491,7 @@
(label_ref (match_dup 2))
(pc)))]
"operands[4] = gen_rtx_REG (QImode, REGNO (operands[0]));
- operands[5] = GEN_INT (trunc_int_for_mode (INTVAL (operands[1]), QImode));")
+ operands[5] = gen_int_mode (INTVAL (operands[1]), QImode);")
(define_peephole2
[(set (match_operand:SI 0 "register_operand" "")
@@ -4515,7 +4515,7 @@
(label_ref (match_dup 2))
(pc)))]
"operands[4] = gen_rtx_REG (QImode, REGNO (operands[0]));
- operands[5] = GEN_INT (trunc_int_for_mode (INTVAL (operands[1]), QImode));")
+ operands[5] = gen_int_mode (INTVAL (operands[1]), QImode);")
(define_peephole2
[(set (match_operand:SI 0 "register_operand" "")
@@ -4539,7 +4539,7 @@
(label_ref (match_dup 2))
(pc)))]
"operands[4] = gen_rtx_REG (HImode, REGNO (operands[0]));
- operands[5] = GEN_INT (trunc_int_for_mode (INTVAL (operands[1]), HImode));")
+ operands[5] = gen_int_mode (INTVAL (operands[1]), HImode);")
(define_peephole2
[(set (match_operand:SI 0 "register_operand" "")
@@ -4570,5 +4570,5 @@
(label_ref (match_dup 3))
(pc)))]
"operands[5] = gen_rtx_REG (QImode, REGNO (operands[0]));
- operands[6] = GEN_INT (trunc_int_for_mode (INTVAL (operands[1]), QImode));
- operands[7] = GEN_INT (trunc_int_for_mode (INTVAL (operands[2]), QImode));")
+ operands[6] = gen_int_mode (INTVAL (operands[1]), QImode);
+ operands[7] = gen_int_mode (INTVAL (operands[2]), QImode);")