diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-11-01 23:42:29 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-11-01 23:42:29 +0000 |
commit | 031f52ce0f4caf843476b76482672fd3c5f83d56 (patch) | |
tree | 8b3c359af3d7c892aa009cc60154954902e7811a /ArmPlatformPkg/Sec/SecEntryPoint.S | |
parent | 99565b88c1bdeae4836aab78db9c08e9511e4adc (diff) | |
download | edk2-platforms-031f52ce0f4caf843476b76482672fd3c5f83d56.tar.xz |
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/Sec/SecEntryPoint.S')
-rw-r--r-- | ArmPlatformPkg/Sec/SecEntryPoint.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/Sec/SecEntryPoint.S b/ArmPlatformPkg/Sec/SecEntryPoint.S index 87de96e916..4a8e9d68d4 100644 --- a/ArmPlatformPkg/Sec/SecEntryPoint.S +++ b/ArmPlatformPkg/Sec/SecEntryPoint.S @@ -88,7 +88,7 @@ _SetupPrimaryCoreStack: _InitGlobals:
str r1, [r3], #4
cmp r3, r2
- blt _InitGlobals
+ bne _InitGlobals
b _PrepareArguments
|