diff options
author | Richard Henderson <rth@cygnus.com> | 2000-03-18 17:56:42 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-03-18 17:56:42 -0800 |
commit | 942248b868017dcdd2b24b4df0a31af4044bbb3d (patch) | |
tree | 0af8c31c8138baab12b2c5375f54a9f804074c42 /gcc | |
parent | 01955e96133ba8678e25523e1b8eabafc06df7fc (diff) | |
download | gcc-942248b868017dcdd2b24b4df0a31af4044bbb3d.tar.gz |
* expr.c (emit_move_insn_1): Clarify cannot_inline message.
From-SVN: r32626
Diffstat (limited to 'gcc')
-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) { |