summaryrefslogtreecommitdiffstats
path: root/ArmPkg/Include/AsmMacroIoLibV8.h
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2016-10-28 12:41:11 +0100
committerArd Biesheuvel <ard.biesheuvel@linaro.org>2016-10-28 16:26:15 +0100
commit29d9e75f8df513406975e7945e0b91dd390fd47a (patch)
tree3439723c0773ddbf8ac573fca6e175e438f1d3b0 /ArmPkg/Include/AsmMacroIoLibV8.h
parentb0609e4f02fc1af93b849e48b225ca5e2c315fc0 (diff)
downloadedk2-29d9e75f8df513406975e7945e0b91dd390fd47a.tar.gz
edk2-29d9e75f8df513406975e7945e0b91dd390fd47a.tar.bz2
edk2-29d9e75f8df513406975e7945e0b91dd390fd47a.zip
ArmPkg: remove LoadConstantXxx() asm macros
This is ancient cruft that is no longer used, so remove it. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'ArmPkg/Include/AsmMacroIoLibV8.h')
-rw-r--r--ArmPkg/Include/AsmMacroIoLibV8.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/ArmPkg/Include/AsmMacroIoLibV8.h b/ArmPkg/Include/AsmMacroIoLibV8.h
index e9285f78e7..db43d3b52e 100644
--- a/ArmPkg/Include/AsmMacroIoLibV8.h
+++ b/ArmPkg/Include/AsmMacroIoLibV8.h
@@ -42,36 +42,6 @@
cbnz SAFE_XREG, 1f ;\
b . ;// We should never get here
-#if defined(__clang__)
-
-// load x0 with _Data
-#define LoadConstant(_Data) \
- ldr x0, 1f ; \
- b 2f ; \
-.align(8) ; \
-1: \
- .8byte (_Data) ; \
-2:
-
-// load _Reg with _Data
-#define LoadConstantToReg(_Data, _Reg) \
- ldr _Reg, 1f ; \
- b 2f ; \
-.align(8) ; \
-1: \
- .8byte (_Data) ; \
-2:
-
-#elif defined (__GNUC__)
-
-#define LoadConstant(Data) \
- ldr x0, =Data
-
-#define LoadConstantToReg(Data, Reg) \
- ldr Reg, =Data
-
-#endif // __GNUC__
-
#define _ASM_FUNC(Name, Section) \
.global Name ; \
.section #Section, "ax" ; \