diff options
Diffstat (limited to 'gold/powerpc.cc')
-rw-r--r-- | gold/powerpc.cc | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/gold/powerpc.cc b/gold/powerpc.cc index 36b5790..bd5571c 100644 --- a/gold/powerpc.cc +++ b/gold/powerpc.cc @@ -342,7 +342,9 @@ Target::Target_info Target_powerpc<32, true>::powerpc_info = elfcpp::SHN_UNDEF, // small_common_shndx elfcpp::SHN_UNDEF, // large_common_shndx 0, // small_common_section_flags - 0 // large_common_section_flags + 0, // large_common_section_flags + NULL, // attributes_section + NULL // attributes_vendor }; template<> @@ -363,7 +365,9 @@ Target::Target_info Target_powerpc<32, false>::powerpc_info = elfcpp::SHN_UNDEF, // small_common_shndx elfcpp::SHN_UNDEF, // large_common_shndx 0, // small_common_section_flags - 0 // large_common_section_flags + 0, // large_common_section_flags + NULL, // attributes_section + NULL // attributes_vendor }; template<> @@ -384,7 +388,9 @@ Target::Target_info Target_powerpc<64, true>::powerpc_info = elfcpp::SHN_UNDEF, // small_common_shndx elfcpp::SHN_UNDEF, // large_common_shndx 0, // small_common_section_flags - 0 // large_common_section_flags + 0, // large_common_section_flags + NULL, // attributes_section + NULL // attributes_vendor }; template<> @@ -405,7 +411,9 @@ Target::Target_info Target_powerpc<64, false>::powerpc_info = elfcpp::SHN_UNDEF, // small_common_shndx elfcpp::SHN_UNDEF, // large_common_shndx 0, // small_common_section_flags - 0 // large_common_section_flags + 0, // large_common_section_flags + NULL, // attributes_section + NULL // attributes_vendor }; template<int size, bool big_endian> |