diff options
author | Oliver Smith-Denny <osde@linux.microsoft.com> | 2024-08-06 15:22:34 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-12 19:36:59 +0000 |
commit | 656665d289b355ada71ad718759200c44c655264 (patch) | |
tree | 18c0a9fe7a46a3736499c1a3783af071a93f95ff /ArmPkg | |
parent | fe6b6feca7b6012278a432226a56f0836ad1c457 (diff) | |
download | edk2-656665d289b355ada71ad718759200c44c655264.tar.gz edk2-656665d289b355ada71ad718759200c44c655264.tar.bz2 edk2-656665d289b355ada71ad718759200c44c655264.zip |
ArmPkg: CompilerIntrinsicsLib: Use AsmMacroIoLibV8.h for AARCH64 ASM
AArch64/ashlti3.S was using AsmMacroIoLib.h which is the ARM version
of these definitions. AsmMacroIoLibV8.h is the AARCH64 version of
these defintions. This patch moves that file to use the proper arch
file.
Signed-off-by: Oliver Smith-Denny <osde@linux.microsoft.com>
Diffstat (limited to 'ArmPkg')
-rw-r--r-- | ArmPkg/Library/CompilerIntrinsicsLib/AArch64/ashlti3.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/ashlti3.S b/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/ashlti3.S index 79a7b3514c..c2e20069b4 100644 --- a/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/ashlti3.S +++ b/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/ashlti3.S @@ -6,7 +6,7 @@ #
#------------------------------------------------------------------------------
-#include <AsmMacroIoLib.h>
+#include <AsmMacroIoLibV8.h>
ASM_FUNC(__ashlti3)
# return if shift is 0
|