mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 08:19:02 +08:00
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
This commit is contained in:
parent
cf74fb8675
commit
fca9f64228
@ -1,3 +1,8 @@
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user