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/PrePi | |
parent | 73ca50096eea3edc64e2c635b6b6d99fbb5572d5 (diff) | |
download | edk2-platforms-f8a9910c9bee387c143029c95524bc3d3286ae55.tar.xz |
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/PrePi')
-rw-r--r-- | ArmPlatformPkg/PrePi/AArch64/ModuleEntryPoint.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/PrePi/AArch64/ModuleEntryPoint.S b/ArmPlatformPkg/PrePi/AArch64/ModuleEntryPoint.S index 86b2f24591..fcea9496cb 100644 --- a/ArmPlatformPkg/PrePi/AArch64/ModuleEntryPoint.S +++ b/ArmPlatformPkg/PrePi/AArch64/ModuleEntryPoint.S @@ -25,7 +25,7 @@ GCC_ASM_IMPORT(ArmPlatformPeiBootAction) GCC_ASM_IMPORT(ArmPlatformStackSet)
GCC_ASM_EXPORT(_ModuleEntryPoint)
-StartupAddr: .dword ASM_PFX(CEntryPoint)
+StartupAddr: .8byte ASM_PFX(CEntryPoint)
ASM_PFX(_ModuleEntryPoint):
// Do early platform specific actions
|