mirror of https://github.com/acidanthera/audk.git
ARM Packages: Use .8byte instead of .dword for pointers
Clang doesn't recognise .dword Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Brendan Jackman <brendan.jackman@arm.com> Reviewed-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15510 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
73ca50096e
commit
f8a9910c9b
|
@ -286,7 +286,7 @@ ASM_PFX(SErrorEntry):
|
||||||
//
|
//
|
||||||
.align 3
|
.align 3
|
||||||
ASM_PFX(CommonExceptionEntry):
|
ASM_PFX(CommonExceptionEntry):
|
||||||
.dword ASM_PFX(AsmCommonExceptionEntry)
|
.8byte ASM_PFX(AsmCommonExceptionEntry)
|
||||||
|
|
||||||
ASM_PFX(ExceptionHandlersEnd):
|
ASM_PFX(ExceptionHandlersEnd):
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ GCC_ASM_IMPORT(ArmReadMpidr)
|
||||||
GCC_ASM_IMPORT(ArmPlatformPeiBootAction)
|
GCC_ASM_IMPORT(ArmPlatformPeiBootAction)
|
||||||
GCC_ASM_EXPORT(_ModuleEntryPoint)
|
GCC_ASM_EXPORT(_ModuleEntryPoint)
|
||||||
|
|
||||||
StartupAddr: .dword CEntryPoint
|
StartupAddr: .8byte CEntryPoint
|
||||||
|
|
||||||
ASM_PFX(_ModuleEntryPoint):
|
ASM_PFX(_ModuleEntryPoint):
|
||||||
// Do early platform specific actions
|
// Do early platform specific actions
|
||||||
|
|
|
@ -25,7 +25,7 @@ GCC_ASM_IMPORT(ArmPlatformPeiBootAction)
|
||||||
GCC_ASM_IMPORT(ArmPlatformStackSet)
|
GCC_ASM_IMPORT(ArmPlatformStackSet)
|
||||||
GCC_ASM_EXPORT(_ModuleEntryPoint)
|
GCC_ASM_EXPORT(_ModuleEntryPoint)
|
||||||
|
|
||||||
StartupAddr: .dword ASM_PFX(CEntryPoint)
|
StartupAddr: .8byte ASM_PFX(CEntryPoint)
|
||||||
|
|
||||||
ASM_PFX(_ModuleEntryPoint):
|
ASM_PFX(_ModuleEntryPoint):
|
||||||
// Do early platform specific actions
|
// Do early platform specific actions
|
||||||
|
|
|
@ -29,7 +29,7 @@ GCC_ASM_IMPORT(ArmReadMpidr)
|
||||||
GCC_ASM_IMPORT(ArmCallWFE)
|
GCC_ASM_IMPORT(ArmCallWFE)
|
||||||
GCC_ASM_EXPORT(_ModuleEntryPoint)
|
GCC_ASM_EXPORT(_ModuleEntryPoint)
|
||||||
|
|
||||||
StartupAddr: .dword ASM_PFX(CEntryPoint)
|
StartupAddr: .8byte ASM_PFX(CEntryPoint)
|
||||||
|
|
||||||
ASM_PFX(_ModuleEntryPoint):
|
ASM_PFX(_ModuleEntryPoint):
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue