tree-sra.c (sra_build_elt_assignment): Initialize min/maxshift.

2007-04-06  Andreas Tobler  <a.tobler@schweiz.org>

        * tree-sra.c (sra_build_elt_assignment): Initialize min/maxshift.

From-SVN: r123628
This commit is contained in:
Andreas Tobler 2007-04-06 22:55:24 +02:00
parent a344e3cbb6
commit 4de5c5d3bf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-06 Andreas Tobler <a.tobler@schweiz.org>
* tree-sra.c (sra_build_elt_assignment): Initialize min/maxshift.
2007-04-06 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.md (extend<mode>xf2): Rename from extendsfxf2
@ -19,6 +23,7 @@
mode macro.
(*truncxf?f_i387 splitter): Ditto.
>>>>>>> .r123627
2007-04-06 Daniel Berlin <dberlin@dberlin.org>
* langhooks-def.h (LANG_HOOKS_INITIALIZER): Remove

View File

@ -2056,7 +2056,7 @@ sra_build_elt_assignment (struct sra_elt *elt, tree src)
tree var, type, tmp, tmp2, tmp3;
tree list, stmt;
tree cst, cst2, mask;
tree minshift, maxshift;
tree minshift = NULL, maxshift = NULL;
if (TREE_CODE (dst) != BIT_FIELD_REF
|| !elt->in_bitfld_block)