Commit 4ddb47b3 by Richard Kenner Committed by Richard Kenner

* config/i386/i386.md (movstrsi): Handle FAIL case.

From-SVN: r40054
parent 618cdda7
Sun Feb 25 08:34:23 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/i386/i386.md (movstrsi): Handle FAIL case.
2001-02-25 Neil Booth <neil@daikokuya.demon.co.uk>
* cppinit.c (builtin_array): Update.
......
......@@ -11188,10 +11188,13 @@
library version, since it is usually equally fast and result in
shorter code. */
if (!TARGET_INLINE_ALL_STRINGOPS && align < 4)
FAIL;
{
end_sequence ();
FAIL;
}
if (TARGET_SINGLE_STRINGOP)
emit_insn (gen_cld());
emit_insn (gen_cld ());
countreg2 = gen_reg_rtx (SImode);
countreg = copy_to_mode_reg (SImode, operands[2]);
......
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