diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-03 05:39:57 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-03 05:39:57 +0000 |
commit | 60c81c899553a6673c4b2e6f0ba26c7b56abbf9c (patch) | |
tree | 83526b7a4efa9bcc4ee6c55a45f9df95a68c2a50 /gcc/regmove.c | |
parent | 2fb00d7f2b6e2b00f011b1ca6ee471a76e1c2542 (diff) | |
download | gcc-60c81c899553a6673c4b2e6f0ba26c7b56abbf9c.zip gcc-60c81c899553a6673c4b2e6f0ba26c7b56abbf9c.tar.gz gcc-60c81c899553a6673c4b2e6f0ba26c7b56abbf9c.tar.bz2 |
doloop.c, [...]: Use const0_rtx instead of GEN_INT (0).
* doloop.c, optabs.c, regmove.c, sched-deps.c,
config/i386/i386.c, config/i386/i386.md: Use const0_rtx
instead of GEN_INT (0). Do the same for other constants that
are readily available.
From-SVN: r77160
Diffstat (limited to 'gcc/regmove.c')
-rw-r--r-- | gcc/regmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/regmove.c b/gcc/regmove.c index 196b86d..4d6c85d 100644 --- a/gcc/regmove.c +++ b/gcc/regmove.c @@ -167,7 +167,7 @@ discover_flags_reg (void) { rtx tmp; tmp = gen_rtx_REG (word_mode, 10000); - tmp = gen_add3_insn (tmp, tmp, GEN_INT (2)); + tmp = gen_add3_insn (tmp, tmp, const2_rtx); /* If we get something that isn't a simple set, or a [(set ..) (clobber ..)], this whole function will go wrong. */ |