Commit fca9f642 by Richard Henderson Committed by Richard Henderson

builtins.c (expand_builtin_strlen): Revert last change.

        * builtins.c (expand_builtin_strlen): Revert last change.
        Use emit_insn_before if we're at the beginning of a sequence.

From-SVN: r32476
parent cf74fb86
2000-03-10 Richard Henderson <rth@cygnus.com>
* builtins.c (expand_builtin_strlen): Revert last change.
Use emit_insn_before if we're at the beginning of a sequence.
2000-03-10 Jason Merrill <jason@casey.cygnus.com>
* builtins.c (expand_builtin_strlen): Make sure that we have something
......
......@@ -1381,8 +1381,6 @@ expand_builtin_strlen (exp, target, mode)
/* Mark the beginning of the strlen sequence so we can emit the
source operand later. */
before_strlen = get_last_insn();
if (before_strlen == NULL_RTX)
before_strlen = emit_note (0, NOTE_INSN_DELETED);
/* Check the string is readable and has an end. */
if (current_function_check_memory_usage)
......@@ -1409,7 +1407,11 @@ expand_builtin_strlen (exp, target, mode)
emit_move_insn (src_reg, pat);
pat = gen_sequence ();
end_sequence ();
emit_insn_after (pat, before_strlen);
if (before_strlen)
emit_insn_after (pat, before_strlen);
else
emit_insn_before (pat, get_insns ());
/* Return the value in the proper mode for this function. */
if (GET_MODE (result) == value_mode)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment