summaryrefslogtreecommitdiff
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-30 18:00:03 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-30 18:00:03 +0000
commit1e5105ae0eb742761ab7809fb4e8722a2d2a7fed (patch)
tree601ebaaf2ae67e5058c6aaf95e6a164c867c8c93 /gcc/dwarf2out.c
parentc17bc02ccb4c478aa0d6f0671ef94b94492dffda (diff)
downloadgcc-1e5105ae0eb742761ab7809fb4e8722a2d2a7fed.tar.gz
* dwarf2out.c (gen_variable_die): Initialize off.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186016 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r--gcc/dwarf2out.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 828e996edb4..ca88fc56b10 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -17765,7 +17765,7 @@ common_block_die_table_eq (const void *x, const void *y)
static void
gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
{
- HOST_WIDE_INT off;
+ HOST_WIDE_INT off = 0;
tree com_decl;
tree decl_or_origin = decl ? decl : origin;
tree ultimate_origin;