From 031f52ce0f4caf843476b76482672fd3c5f83d56 Mon Sep 17 00:00:00 2001 From: oliviermartin Date: Tue, 1 Nov 2011 23:42:29 +0000 Subject: ArmPlatformPkg: Fix initialization of the Global Variable when stack pointer higher than 0x7FFFFFFF Fixed signed comparison error. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12639 6f19259b-4bc3-4df7-8a09-765794883524 --- ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.S | 2 +- ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ArmPlatformPkg/PrePeiCore') diff --git a/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.S b/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.S index 0ec4e0c6e1..0edcee2f14 100644 --- a/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.S +++ b/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.S @@ -72,7 +72,7 @@ _SetupPrimaryCoreStack: _InitGlobals: str r1, [r3], #4 cmp r3, r2 - blt _InitGlobals + bne _InitGlobals _PrepareArguments: // The PEI Core Entry Point has been computed by GenFV and stored in the second entry of the Reset Vector diff --git a/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.asm b/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.asm index 1694b905d0..f6d84b5f26 100644 --- a/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.asm +++ b/ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.asm @@ -74,7 +74,7 @@ _SetupPrimaryCoreStack _InitGlobals str r1, [r3], #4 cmp r3, r2 - blt _InitGlobals + bne _InitGlobals _PrepareArguments // The PEI Core Entry Point has been computed by GenFV and stored in the second entry of the Reset Vector -- cgit v1.2.3