Commit ffa916ba by Kaveh R. Ghazi Committed by Kaveh Ghazi

* sparc.c (print_operand): Fix uninitialized warning.

From-SVN: r66707
parent d7d89a58
2003-05-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* sparc.c (print_operand): Fix uninitialized warning.
2003-05-12 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> 2003-05-12 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* cfgloopanal.c (num_loop_insns, average_num_loop_insns): Count only * cfgloopanal.c (num_loop_insns, average_num_loop_insns): Count only
......
...@@ -6481,7 +6481,10 @@ print_operand (file, x, code) ...@@ -6481,7 +6481,10 @@ print_operand (file, x, code)
else if (GET_CODE(x) == CONST_DOUBLE) else if (GET_CODE(x) == CONST_DOUBLE)
i = CONST_DOUBLE_LOW (x); i = CONST_DOUBLE_LOW (x);
else else
output_operand_lossage ("invalid %%s operand"); {
output_operand_lossage ("invalid %%s operand");
return;
}
i = trunc_int_for_mode (i, SImode); i = trunc_int_for_mode (i, SImode);
fprintf (file, HOST_WIDE_INT_PRINT_DEC, i); fprintf (file, HOST_WIDE_INT_PRINT_DEC, i);
return; return;
......
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