Commit 36f09faa by Nick Clifton Committed by Nick Clifton

(output_return_instruction): Do not create the conditional part of the return instruction...

(output_return_instruction): Do not create the conditional part of the return
instruction, if there is no condition to be used.

From-SVN: r51750
parent 3741b1ab
2002-04-02 Nick Clifton <nickc@cambridge.redhat.com>
* config/arm/arm.c (output_return_instruction): Do not create the
conditional part of the return instruction, if there is no
condition to be used.
Tue Apr 2 06:47:40 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* stor-layout.c (layout_type, case ARRAY_TYPE): Give one-element array
......
......@@ -7210,7 +7210,10 @@ output_return_instruction (operand, really_return, reverse)
abort ();
/* Construct the conditional part of the instruction(s) to be emitted. */
sprintf (conditional, "%%?%%%c0", reverse ? 'D' : 'd');
if (operand)
sprintf (conditional, "%%?%%%c0", reverse ? 'D' : 'd');
else
* conditional = 0;
return_used_this_function = 1;
......
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