diff options
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 3fb0f94..208d709 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -71,12 +71,10 @@ trunc_int_for_mode (HOST_WIDE_INT c, enum machine_mode mode) return c; } -/* Return an rtx for the sum of X and the integer C. - - This function should be used via the `plus_constant' macro. */ +/* Return an rtx for the sum of X and the integer C. */ rtx -plus_constant_wide (rtx x, HOST_WIDE_INT c) +plus_constant (rtx x, HOST_WIDE_INT c) { RTX_CODE code; rtx y; |