Commit 5bc4fa7c by Mark Shinwell Committed by Nathan Sidwell

* final.c (asm_insn_count): Return zero for an empty asm body.

From-SVN: r137346
parent 5f0d975b
2008-07-02 Mark Shinwell <shinwell@codesourcery.com>
* final.c (asm_insn_count): Return zero for an empty asm body.
2008-07-02 Richard Guenther <rguenther@suse.de>
* bitmap.h (bitmap_set_bit): Return bool.
......
......@@ -1385,6 +1385,9 @@ asm_insn_count (rtx body)
else
template = decode_asm_operands (body, NULL, NULL, NULL, NULL, NULL);
if (!*template)
return 0;
for (; *template; template++)
if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template, template)
|| *template == '\n')
......
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