Reviewed-by: Liming Gao <[email protected]> -----Original Message----- From: [email protected] <[email protected]> On Behalf Of Abner Chang Sent: 2020年7月25日 10:35 To: [email protected] Cc: [email protected]; Feng, Bob C <[email protected]>; Gao, Liming <[email protected]>; Daniel Schaefer <[email protected]> Subject: [edk2-devel] [PATCH] BaseTools/PeCoffLoaderEx: Remove the unused local variable
BZ:2864 GCC build fails due to variable self assignment. This local variable is not used at any where, we can just remove it. Signed-off-by: Abner Chang <[email protected]> Cc: Bob Feng <[email protected]> Cc: Liming Gao <[email protected]> Cc: Daniel Schaefer <[email protected]> --- BaseTools/Source/C/Common/PeCoffLoaderEx.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/BaseTools/Source/C/Common/PeCoffLoaderEx.c b/BaseTools/Source/C/Common/PeCoffLoaderEx.c index 588b3a2f84..799f282970 100644 --- a/BaseTools/Source/C/Common/PeCoffLoaderEx.c +++ b/BaseTools/Source/C/Common/PeCoffLoaderEx.c @@ -127,10 +127,7 @@ PeCoffLoaderRelocateRiscVImage ( { UINT32 Value; UINT32 Value2;- UINT32 OrgValue; - OrgValue = *(UINT32 *) Fixup;- OrgValue = OrgValue; switch ((*Reloc) >> 12) { case EFI_IMAGE_REL_BASED_RISCV_HI20: RiscVHi20Fixup = (UINT32 *) Fixup;-- 2.25.0 -=-=-=-=-=-= Groups.io Links: You receive all messages sent to this group. View/Reply Online (#63269): https://edk2.groups.io/g/devel/message/63269 Mute This Topic: https://groups.io/mt/75779823/1759384 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-= -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#63428): https://edk2.groups.io/g/devel/message/63428 Mute This Topic: https://groups.io/mt/75779823/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
