aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2006-11-21 03:30:34 +0000
committerBen Elliston <bje@gcc.gnu.org>2006-11-21 14:30:34 +1100
commitb509487e8855a198e2fd7b40316b6d124ef3afc4 (patch)
tree3e3448d2696d7ab9899d5c6463eff2c41448bc23 /gcc/config
parent83cc06b2b87080d8cf835267ea7ec24f38945269 (diff)
downloadgcc-b509487e8855a198e2fd7b40316b6d124ef3afc4.zip
gcc-b509487e8855a198e2fd7b40316b6d124ef3afc4.tar.gz
gcc-b509487e8855a198e2fd7b40316b6d124ef3afc4.tar.bz2
* config/spu/spu.c (spu_expand_vector_init): Initialise x.
From-SVN: r119043
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/spu/spu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c
index 99a0ac8..fc0ed19 100644
--- a/gcc/config/spu/spu.c
+++ b/gcc/config/spu/spu.c
@@ -4395,7 +4395,7 @@ spu_expand_vector_init (rtx target, rtx vals)
int n_elts = GET_MODE_NUNITS (mode);
int n_var = 0;
bool all_same = true;
- rtx first, x, first_constant = NULL_RTX;
+ rtx first, x = NULL_RTX, first_constant = NULL_RTX;
int i;
first = XVECEXP (vals, 0, 0);