Add missing break statement for case elfcpp::R_X86_64_PLTOFF64.

gold/
	* x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.
This commit is contained in:
Cary Coutant 2014-04-23 15:17:16 -07:00
parent 4b48d43901
commit 7849f6d8dc
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-04-23 Cary Coutant <ccoutant@google.com>
* x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.
2014-04-15 Sasa Stankovic <Sasa.Stankovic@imgtec.com>
* layout.cc (Layout::include_section): Allow a target to decide

View File

@ -3392,6 +3392,7 @@ Target_x86_64<size>::Relocate::relocate(
Relocate_functions<size, false>::rela64(view, object, psymval,
addend - got_address);
}
break;
case elfcpp::R_X86_64_GOT32:
gold_assert(have_got_offset);