diff options
| author | Dylan McKay <dylanmckay34@gmail.com> | 2016-10-22 23:57:59 +0000 |
|---|---|---|
| committer | Dylan McKay <dylanmckay34@gmail.com> | 2016-10-22 23:57:59 +0000 |
| commit | 479a13c0aa3f9afd80a89104a03d354c92a2f9df (patch) | |
| tree | 35e558f7042156cc2a59b7df7a79df7f87847551 /llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt | |
| parent | 4d63dfc286b22df992f3237f6024b3bd213581c4 (diff) | |
| download | bcm5719-llvm-479a13c0aa3f9afd80a89104a03d354c92a2f9df.tar.gz bcm5719-llvm-479a13c0aa3f9afd80a89104a03d354c92a2f9df.zip | |
[AVR] Add the machine code disassembler
This adds a super basic implementation of a machine code disassembler.
It doesn't support any operands with custom encoding.
llvm-svn: 284930
Diffstat (limited to 'llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt')
| -rw-r--r-- | llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt b/llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt new file mode 100644 index 00000000000..e97babd2a11 --- /dev/null +++ b/llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt @@ -0,0 +1,23 @@ +;===- ./lib/Target/AVR/Disassembler/LLVMBuild.txt --------------*- Conf -*--===; +; +; The LLVM Compiler Infrastructure +; +; This file is distributed under the University of Illinois Open Source +; License. See LICENSE.TXT for details. +; +;===------------------------------------------------------------------------===; +; +; This is an LLVMBuild description file for the components in this subdirectory. +; +; For more information on the LLVMBuild system, please see: +; +; http://llvm.org/docs/LLVMBuild.html +; +;===------------------------------------------------------------------------===; + +[component_0] +type = Library +name = AVRDisassembler +parent = AVR +required_libraries = MCDisassembler AVRInfo Support +add_to_library_groups = AVR |

