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/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
