diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-12-21 15:52:34 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-12-21 15:52:34 +0100 |
commit | d6e1acf654f4b21e1f8fd4be43f01e2dcec2dbd0 (patch) | |
tree | cd85abcab565420238a5bb4e538acc622475c86f /gcc/calls.c | |
parent | bccc50d44c8b79ecb6b0237912e96369e5625d17 (diff) | |
download | gcc-d6e1acf654f4b21e1f8fd4be43f01e2dcec2dbd0.zip gcc-d6e1acf654f4b21e1f8fd4be43f01e2dcec2dbd0.tar.gz gcc-d6e1acf654f4b21e1f8fd4be43f01e2dcec2dbd0.tar.bz2 |
tree-vect-patterns.c (vect_operation_fits_smaller_type): Initialize *op0 and *op1 to NULL_TREE first to avoid warnings.
* tree-vect-patterns.c (vect_operation_fits_smaller_type): Initialize
*op0 and *op1 to NULL_TREE first to avoid warnings.
* calls.c (initialize_argument_information): Initialize base to avoid
warnings.
From-SVN: r182590
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 0ef0cad..c8d0b84 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -1157,7 +1157,7 @@ initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED, type, argpos < n_named_args)) { bool callee_copies; - tree base; + tree base = NULL_TREE; callee_copies = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type), |