summaryrefslogtreecommitdiff
path: root/purgatory/arch/ppc64/ppc64_asm.h
diff options
context:
space:
mode:
Diffstat (limited to 'purgatory/arch/ppc64/ppc64_asm.h')
-rw-r--r--purgatory/arch/ppc64/ppc64_asm.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/purgatory/arch/ppc64/ppc64_asm.h b/purgatory/arch/ppc64/ppc64_asm.h
new file mode 100644
index 0000000..b8746fd
--- /dev/null
+++ b/purgatory/arch/ppc64/ppc64_asm.h
@@ -0,0 +1,16 @@
+/*
+ * ppc64_asm.h - common defines for PPC64 assembly parts
+ *
+ * This source code is licensed under the GNU General Public License,
+ * Version 2. See the file COPYING for more details.
+ */
+
+/*
+ * ABIv1 requires dot symbol while ABIv2 does not.
+ */
+#if defined(_CALL_ELF) && _CALL_ELF == 2
+#define DOTSYM(a) a
+#else
+#define GLUE(a,b) a##b
+#define DOTSYM(a) GLUE(.,a)
+#endif