From fa4657624c6609bbfffb4ec5fb1e19e44691c864 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Tue, 14 Jun 2011 16:31:57 +0000 Subject: [PATCH] Properly expand strlen to Pmode. 2011-06-14 H.J. Lu PR middle-end/47364 * builtins.c (expand_builtin_strlen): Expand strlen to Pmode and properly handle result not in Pmode. From-SVN: r175034 --- gcc/ChangeLog | 6 ++++++ gcc/builtins.c | 11 +++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 651f380e54f..56e88cfaabb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-06-14 H.J. Lu + + PR middle-end/47364 + * builtins.c (expand_builtin_strlen): Expand strlen to Pmode + and properly handle result not in Pmode. + 2011-06-14 Robert Millan * config/i386/kfreebsd-gnu.h: Resync with `config/i386/linux.h'. diff --git a/gcc/builtins.c b/gcc/builtins.c index 7b24a0ce703..cf975e578a7 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -2939,9 +2939,16 @@ expand_builtin_strlen (tree exp, rtx target, /* Now that we are assured of success, expand the source. */ start_sequence (); - pat = expand_expr (src, src_reg, ptr_mode, EXPAND_NORMAL); + pat = expand_expr (src, src_reg, Pmode, EXPAND_NORMAL); if (pat != src_reg) - emit_move_insn (src_reg, pat); + { +#ifdef POINTERS_EXTEND_UNSIGNED + if (GET_MODE (pat) != Pmode) + pat = convert_to_mode (Pmode, pat, + POINTERS_EXTEND_UNSIGNED); +#endif + emit_move_insn (src_reg, pat); + } pat = get_insns (); end_sequence (); -- 2.30.2