aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/Disassembler
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-04-07 20:53:12 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-04-07 20:53:12 +0000
commitd47ae912b9575fa3315d4fc3329b3ea754162a60 (patch)
tree4440a8e0acbf1d62879630c247df92fa8d9b7d2b /lib/Target/ARM/Disassembler
parent576828f8353c2a728f259cf0a0c77bafb21d4fb9 (diff)
downloadexternal_llvm-d47ae912b9575fa3315d4fc3329b3ea754162a60.zip
external_llvm-d47ae912b9575fa3315d4fc3329b3ea754162a60.tar.gz
external_llvm-d47ae912b9575fa3315d4fc3329b3ea754162a60.tar.bz2
Re-enable ARM/Thumb disassembler and add a workaround for a memcpy() call in
ARMDecoderEmitter.cpp, with FIXME comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/Disassembler')
-rw-r--r--lib/Target/ARM/Disassembler/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/Target/ARM/Disassembler/Makefile b/lib/Target/ARM/Disassembler/Makefile
new file mode 100644
index 0000000..031b6ac
--- /dev/null
+++ b/lib/Target/ARM/Disassembler/Makefile
@@ -0,0 +1,16 @@
+##===- lib/Target/ARM/Disassembler/Makefile ----------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../../../..
+LIBRARYNAME = LLVMARMDisassembler
+
+# Hack: we need to include 'main' arm target directory to grab private headers
+CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
+
+include $(LEVEL)/Makefile.common