Commit 54e43c67 by Jan Hubicka Committed by Richard Henderson

Jan Hubicka <hubicka@freesoft.cz>

        * builtins.c (expand_builtin_strlen): Fix best mode searching loop.

From-SVN: r29770
parent e0dc26ff
Sat Oct 2 10:55:25 1999 Jan Hubicka <hubicka@freesoft.cz>
* builtins.c (expand_builtin_strlen): Fix best mode searching loop.
Sat Oct 2 10:53:22 1999 Jan Hubicka <hubicka@freesoft.cz>
* i386.md (ffs expander): Emit Pentium friendly code for
......
......@@ -1318,7 +1318,7 @@ expand_builtin_strlen (exp, target, mode)
{
icode = strlen_optab->handlers[(int) insn_mode].insn_code;
if (icode != CODE_FOR_nothing)
return 0;
break;
insn_mode = GET_MODE_WIDER_MODE (insn_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