Commit a20b6691 by Bernd Edlinger Committed by Bernd Edlinger

ipa-icf-gimple.c (func_checker::compare_gimple_asm): Add check for basic asm.

2015-12-07  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        * ipa-icf-gimple.c (func_checker::compare_gimple_asm): Add check for
        basic asm.

From-SVN: r231369
parent 51baf85a
2015-12-07 Bernd Edlinger <bernd.edlinger@hotmail.de>
* ipa-icf-gimple.c (func_checker::compare_gimple_asm): Add check for
basic asm.
2015-12-07 Nathan Sidwell <nathan@acm.org>
* config/nvptx/nvptx.c (nvptx_output_call_insn): Emit trap after no
......@@ -981,6 +981,9 @@ func_checker::compare_gimple_asm (const gasm *g1, const gasm *g2)
if (gimple_asm_volatile_p (g1) != gimple_asm_volatile_p (g2))
return false;
if (gimple_asm_input_p (g1) != gimple_asm_input_p (g2))
return false;
if (gimple_asm_ninputs (g1) != gimple_asm_ninputs (g2))
return false;
......
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