diff options
author | Charles Hannum <mycroft@gnu.org> | 1992-07-06 19:55:04 +0000 |
---|---|---|
committer | Charles Hannum <mycroft@gnu.org> | 1992-07-06 19:55:04 +0000 |
commit | 3245eea08ab719267d7f74ffba7043130dde8478 (patch) | |
tree | ccd880ce2afcd724a5eb67c4c75ccbd616e3afbf /gcc/expr.h | |
parent | f2b63869e3f184f3092f549caadb89f0f12416ab (diff) | |
download | gcc-3245eea08ab719267d7f74ffba7043130dde8478.zip gcc-3245eea08ab719267d7f74ffba7043130dde8478.tar.gz gcc-3245eea08ab719267d7f74ffba7043130dde8478.tar.bz2 |
entered into RCS
From-SVN: r1466
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -153,10 +153,10 @@ struct args_size /* Convert the implicit sum in a `struct args_size' into an rtx. */ #define ARGS_SIZE_RTX(SIZE) \ -((SIZE).var == 0 ? gen_rtx (CONST_INT, VOIDmode, (SIZE).constant) \ +((SIZE).var == 0 ? GEN_INT ((SIZE).constant) \ : expand_expr (size_binop (PLUS_EXPR, (SIZE).var, \ size_int ((SIZE).constant)), \ - 0, VOIDmode, 0)) + NULL_RTX, VOIDmode, 0)) /* Convert the implicit sum in a `struct args_size' into a tree. */ #define ARGS_SIZE_TREE(SIZE) \ @@ -527,9 +527,6 @@ extern rtx force_operand (); /* Return an rtx for the size in bytes of the value of an expr. */ extern rtx expr_size (); -/* Return an rtx for the sum of an rtx and an integer. */ -extern rtx plus_constant (); - extern rtx lookup_static_chain (); /* Return an rtx like arg but sans any constant terms. |