diff options
author | AJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-12-06 02:01:54 +0000 |
---|---|---|
committer | AJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-12-06 02:01:54 +0000 |
commit | 1afe0401f4906dcdd5e76c9d4b46b69438be942f (patch) | |
tree | 83e1d98b690d5eda902e770c4b438673373870e2 /MdePkg/Include/Arm | |
parent | 7ee3b61338de1fa592227c719eca20f7813ea606 (diff) | |
download | edk2-platforms-1afe0401f4906dcdd5e76c9d4b46b69438be942f.tar.xz |
Fixes for ARM build in the EdkCompatibilityPkg and a couple of Xcode fixes for MdePkg.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9520 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Arm')
-rw-r--r-- | MdePkg/Include/Arm/ProcessorBind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Include/Arm/ProcessorBind.h b/MdePkg/Include/Arm/ProcessorBind.h index f4313c4dfe..6b75325f87 100644 --- a/MdePkg/Include/Arm/ProcessorBind.h +++ b/MdePkg/Include/Arm/ProcessorBind.h @@ -123,6 +123,6 @@ typedef INT32 INTN; @return The pointer to the first instruction of a function given a function pointer.
**/
-#define FUNCTION_ENTRY_POINT(FunctionPointer) (FunctionPointer)
+#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)
#endif
|