2017-09-11 Max Filippov <[email protected]>
gcc/
* expmed.c (emit_store_flag_int): Initialize rtx tem.
---
gcc/expmed.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/expmed.c b/gcc/expmed.c
index 7f0cb0a0ec05..945ab3d656a2 100644
--- a/gcc/expmed.c
+++ b/gcc/expmed.c
@@ -5601,7 +5601,7 @@ emit_store_flag_int (rtx target, rtx subtarget, enum
rtx_code code, rtx op0,
{
machine_mode target_mode = target ? GET_MODE (target) : VOIDmode;
rtx_insn *last = get_last_insn ();
- rtx tem;
+ rtx tem = NULL_RTX;
/* If this is an equality comparison of integers, we can try to exclusive-or
(or subtract) the two operands and use a recursive call to try the
--
2.1.4