From 0ad8ba204bedab012bfca219a79ed7f7708c136b Mon Sep 17 00:00:00 2001
From: Slava Pestov <slava@slava-pestovs-macbook-pro.local>
Date: Thu, 7 Jan 2010 18:05:31 +1300
Subject: [PATCH] vm: remove asm.h

---
 vm/asm.h     | 16 ----------------
 vm/cpu-ppc.S | 17 ++++++++++++++++-
 2 files changed, 16 insertions(+), 17 deletions(-)
 delete mode 100644 vm/asm.h

diff --git a/vm/asm.h b/vm/asm.h
deleted file mode 100644
index 9719ae8af0..0000000000
--- a/vm/asm.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#if defined(__APPLE__) || (defined(WINDOWS) && !defined(__arm__))
-	#define MANGLE(sym) _##sym
-#else
-	#define MANGLE(sym) sym
-#endif
-
-/* Apple's PPC assembler is out of date? */
-#if defined(__APPLE__) && defined(__ppc__)
-	#define XX @
-#else
-	#define XX ;
-#endif
-
-/* The returns and args are just for documentation */
-#define DEF(returns,symbol,args) .globl MANGLE(symbol) XX \
-MANGLE(symbol)
diff --git a/vm/cpu-ppc.S b/vm/cpu-ppc.S
index 772f4a24fc..b387bafbbf 100644
--- a/vm/cpu-ppc.S
+++ b/vm/cpu-ppc.S
@@ -1,6 +1,21 @@
 /* Parts of this file were snarfed from SBCL src/runtime/ppc-assem.S, which is
 in the public domain. */
-#include "asm.h"
+#if defined(__APPLE__) || (defined(WINDOWS) && !defined(__arm__))
+	#define MANGLE(sym) _##sym
+#else
+	#define MANGLE(sym) sym
+#endif
+
+/* Apple's PPC assembler is out of date? */
+#if defined(__APPLE__) && defined(__ppc__)
+	#define XX @
+#else
+	#define XX ;
+#endif
+
+/* The returns and args are just for documentation */
+#define DEF(returns,symbol,args) .globl MANGLE(symbol) XX \
+MANGLE(symbol)
 
 #define DS_REG r13
 #define RS_REG r14