diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-10-31 15:58:05 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-10-31 15:58:05 +0000 |
commit | 7538d53684792266c37e91f11a3ce2b7fb1e32d9 (patch) | |
tree | 1a82491c7ef95953283429136bde44ed621ed944 /MdeModulePkg/Core | |
parent | 310580cf8a9656e3990b7d58fafdc0ce62b9b61f (diff) | |
download | edk2-platforms-7538d53684792266c37e91f11a3ce2b7fb1e32d9.tar.xz |
MdeModulePkg: Remove variables that are set, but not used
GCC 4.6 generates a warning when a variable is set,
but never used.
Signed-off-by: jljusten
Reviewed-by: lgao4
Reviewed-by: erictian
Reviewed-by: rsun3
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12617 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core')
-rw-r--r-- | MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index ffeab4e391..0392cfe1e8 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -265,8 +265,6 @@ PeiLoadFixAddressHook( EFI_PEI_HOB_POINTERS CurrentHob;
EFI_PEI_HOB_POINTERS Hob;
EFI_PEI_HOB_POINTERS NextHob;
- EFI_PHYSICAL_ADDRESS MaxMemoryBaseAddress;
- UINT64 MaxMemoryLength;
EFI_HOB_MEMORY_ALLOCATION *MemoryHob;
//
// Initialize Local Variables
@@ -274,8 +272,6 @@ PeiLoadFixAddressHook( CurrentResourceHob = NULL;
ResourceHob = NULL;
NextResourceHob = NULL;
- MaxMemoryBaseAddress = 0;
- MaxMemoryLength = 0;
HighAddress = 0;
TopLoadingAddress = 0;
MemoryRangeEnd = 0;
|