diff options
-rw-r--r-- | gold/ChangeLog | 5 | ||||
-rw-r--r-- | gold/x86_64.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 88ee9a5..1e64eb6 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,5 +1,10 @@ 2018-06-23 Cary Coutant <ccoutant@gmail.com> + PR gold/22914 + * x86_64.cc (Target_x86_64::record_gnu_property): Initialize val. + +2018-06-23 Cary Coutant <ccoutant@gmail.com> + PR gold/22915 * x86_64.cc (Output_data_plt_x86_64_ibt): New class. (Target_x86_64::do_make_data_plt): (All instantiations) Check for diff --git a/gold/x86_64.cc b/gold/x86_64.cc index 9b72597..27f273d 100644 --- a/gold/x86_64.cc +++ b/gold/x86_64.cc @@ -1583,7 +1583,7 @@ Target_x86_64<size>::record_gnu_property( size_t pr_datasz, const unsigned char* pr_data, const Object* object) { - uint32_t val; + uint32_t val = 0; switch (pr_type) { |