diff options
author | Brendan Jackman <brendan.jackman@arm.com> | 2014-05-08 14:59:50 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-05-08 14:59:50 +0000 |
commit | f8a9910c9bee387c143029c95524bc3d3286ae55 (patch) | |
tree | 5b3ce2e50738f4103f2b22272241d5777e0980a7 /ArmPlatformPkg/PrePeiCore | |
parent | 73ca50096eea3edc64e2c635b6b6d99fbb5572d5 (diff) | |
download | edk2-f8a9910c9bee387c143029c95524bc3d3286ae55.tar.gz edk2-f8a9910c9bee387c143029c95524bc3d3286ae55.tar.bz2 edk2-f8a9910c9bee387c143029c95524bc3d3286ae55.zip |
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
Diffstat (limited to 'ArmPlatformPkg/PrePeiCore')
-rw-r--r-- | ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S b/ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S index 05a823ba21..b84190cf3f 100644 --- a/ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S +++ b/ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S @@ -26,7 +26,7 @@ GCC_ASM_IMPORT(ArmReadMpidr) GCC_ASM_IMPORT(ArmPlatformPeiBootAction)
GCC_ASM_EXPORT(_ModuleEntryPoint)
-StartupAddr: .dword CEntryPoint
+StartupAddr: .8byte CEntryPoint
ASM_PFX(_ModuleEntryPoint):
// Do early platform specific actions
|