|
From: <sv...@va...> - 2014-07-21 07:56:02
|
Author: sewardj
Date: Mon Jul 21 07:55:45 2014
New Revision: 2906
Log:
Initialise a couple of scalars that gcc -Og thinks might be
uninitialised, presumably because at -Og it doesn't do enough
block straightening-outening or whatever to see that they are
always assigned before use.
Modified:
trunk/priv/guest_arm_toIR.c
Modified: trunk/priv/guest_arm_toIR.c
==============================================================================
--- trunk/priv/guest_arm_toIR.c (original)
+++ trunk/priv/guest_arm_toIR.c Mon Jul 21 07:55:45 2014
@@ -3657,8 +3657,8 @@
case 4:
if (B == 0) {
/* VSHL */
- IROp op, sub_op;
- IRTemp tmp;
+ IROp op = Iop_INVALID, sub_op = Iop_INVALID;
+ IRTemp tmp = IRTemp_INVALID;
if (U) {
switch (size) {
case 0: op = Q ? Iop_Shl8x16 : Iop_Shl8x8; break;
|