summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/PrePeiCore
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-11-01 23:42:29 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-11-01 23:42:29 +0000
commit031f52ce0f4caf843476b76482672fd3c5f83d56 (patch)
tree8b3c359af3d7c892aa009cc60154954902e7811a /ArmPlatformPkg/PrePeiCore
parent99565b88c1bdeae4836aab78db9c08e9511e4adc (diff)
downloadedk2-031f52ce0f4caf843476b76482672fd3c5f83d56.tar.gz
edk2-031f52ce0f4caf843476b76482672fd3c5f83d56.tar.bz2
edk2-031f52ce0f4caf843476b76482672fd3c5f83d56.zip
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
Diffstat (limited to 'ArmPlatformPkg/PrePeiCore')
-rw-r--r--ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.S2
-rw-r--r--ArmPlatformPkg/PrePeiCore/PrePeiCoreEntryPoint.asm2
2 files changed, 2 insertions, 2 deletions
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