diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-30 18:00:03 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-30 18:00:03 +0000 |
commit | 1e5105ae0eb742761ab7809fb4e8722a2d2a7fed (patch) | |
tree | 601ebaaf2ae67e5058c6aaf95e6a164c867c8c93 /gcc/dwarf2out.c | |
parent | c17bc02ccb4c478aa0d6f0671ef94b94492dffda (diff) | |
download | gcc-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.c | 2 |
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; |