diff options
author | Scott Duplichan <scott@notabs.org> | 2015-04-10 02:41:14 +0000 |
---|---|---|
committer | mauricema <mauricema@Edk2> | 2015-04-10 02:41:14 +0000 |
commit | b6242db90a340a934f4ab2313df76b44c9b1dcb0 (patch) | |
tree | 9788f5f2d5f1a923760a5ffe26dcab692d5b395d /CorebootModulePkg/SecCore | |
parent | c3911fd851125cd02b60ec4bfb7be54acc1cbbea (diff) | |
download | edk2-b6242db90a340a934f4ab2313df76b44c9b1dcb0.tar.gz edk2-b6242db90a340a934f4ab2313df76b44c9b1dcb0.tar.bz2 edk2-b6242db90a340a934f4ab2313df76b44c9b1dcb0.zip |
CorebootModulePkg: Reformat asm constant to avoid gcc assembler fail
The gnu assembler doesn't allow multiple '$' in an expression.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Scott Duplichan <scott@notabs.org>
Reviewed-by: Maurice Ma <maurice.ma@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17146 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'CorebootModulePkg/SecCore')
-rw-r--r-- | CorebootModulePkg/SecCore/Ia32/SecEntry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CorebootModulePkg/SecCore/Ia32/SecEntry.S b/CorebootModulePkg/SecCore/Ia32/SecEntry.S index 7133a9edb7..3a3f76ed6b 100644 --- a/CorebootModulePkg/SecCore/Ia32/SecEntry.S +++ b/CorebootModulePkg/SecCore/Ia32/SecEntry.S @@ -46,7 +46,7 @@ ASM_PFX(_ModuleEntryPoint): #
# Construct the temporary memory at 0x80000, length 0x10000
#
- movl ($BASE_512KB + $SIZE_64KB), %esp
+ movl $(BASE_512KB + SIZE_64KB), %esp
#
# Pass BFV into the PEI Core
|