diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/expr.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6927fb2ba01..e17f15e032a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-03-18 Richard Henderson <rth@cygnus.com> + + * expr.c (emit_move_insn_1): Clarify cannot_inline message. + 2000-03-18 Mark Mitchell <mark@codesourcery.com> * tree.h (tree_index): Remove enumerals for integer types. diff --git a/gcc/expr.c b/gcc/expr.c index 4e09199bedd..abbd278c0aa 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -2668,7 +2668,7 @@ emit_move_insn_1 (x, y) rtx cmem = change_address (mem, mode, NULL_RTX); - cfun->cannot_inline = "function uses short complex types"; + cfun->cannot_inline = N_("function using short complex types cannot be inline"); if (packed_dest_p) { |