From e848b58d7c85293cd4121287abcea2d22a4f0620 Mon Sep 17 00:00:00 2001 From: Abner Chang Date: Sat, 25 Jul 2020 10:34:51 +0800 Subject: [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 Cc: Bob Feng Cc: Liming Gao Cc: Daniel Schaefer Reviewed-by: Liming Gao --- 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.39.2