From b509487e8855a198e2fd7b40316b6d124ef3afc4 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Tue, 21 Nov 2006 03:30:34 +0000 Subject: [PATCH] * config/spu/spu.c (spu_expand_vector_init): Initialise x. From-SVN: r119043 --- gcc/ChangeLog | 4 ++++ gcc/config/spu/spu.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31b26fdadf3c..d7b9a406a02d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-11-21 Ben Elliston + + * config/spu/spu.c (spu_expand_vector_init): Initialise x. + 2006-11-20 Trevor Smigiel Russell Olsen Dmitri Makarov diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c index 99a0ac86e58f..fc0ed195e02a 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);