aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/Makefile
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2009-09-15 00:27:25 +0000
committerKevin Enderby <enderby@apple.com>2009-09-15 00:27:25 +0000
commitca9c42c4daa8f4ffd9411e11c05fb53ee1bfaf70 (patch)
tree1cfcc2896ea5b3cae259e47c2c10c38936ad3725 /lib/Target/ARM/Makefile
parentb6aef5c86736accefb1c61cacaf1bd29e9b25ecd (diff)
downloadexternal_llvm-ca9c42c4daa8f4ffd9411e11c05fb53ee1bfaf70.zip
external_llvm-ca9c42c4daa8f4ffd9411e11c05fb53ee1bfaf70.tar.gz
external_llvm-ca9c42c4daa8f4ffd9411e11c05fb53ee1bfaf70.tar.bz2
Added the first bits of the ARM target assembler to llvm-mc. For now it only
parses the .word directive as 4 bytes and ARMAsmParser::ParseInstruction will give an error is called. Broke out the test of the .word directive into two different test cases, one for x86 and one for arm. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/Makefile')
-rw-r--r--lib/Target/ARM/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/Makefile b/lib/Target/ARM/Makefile
index d879521..a8dd38c 100644
--- a/lib/Target/ARM/Makefile
+++ b/lib/Target/ARM/Makefile
@@ -18,6 +18,6 @@ BUILT_SOURCES = ARMGenRegisterInfo.h.inc ARMGenRegisterNames.inc \
ARMGenDAGISel.inc ARMGenSubtarget.inc \
ARMGenCodeEmitter.inc ARMGenCallingConv.inc
-DIRS = AsmPrinter TargetInfo
+DIRS = AsmPrinter AsmParser TargetInfo
include $(LEVEL)/Makefile.common