diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-02-05 13:24:47 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-02-05 13:24:47 +0000 |
commit | 19254c49a8752fe8c6fa648a6eb29f20a1f62c8b (patch) | |
tree | a5fc35fcd05b26436ea7bc91fcdcd19d6f638d6e /lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp | |
parent | 7304702ef99f98897d15baae0eede55f294bc602 (diff) | |
download | external_llvm-19254c49a8752fe8c6fa648a6eb29f20a1f62c8b.zip external_llvm-19254c49a8752fe8c6fa648a6eb29f20a1f62c8b.tar.gz external_llvm-19254c49a8752fe8c6fa648a6eb29f20a1f62c8b.tar.bz2 |
Remove cyclic dependency in AArch64 libraries
This moves the bit twiddling and string fiddling functions required by other
parts of the backend into a separate library. Previously they resided in
AArch64Desc, which created a circular dependency between various components.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174369 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp')
-rw-r--r-- | lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp b/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp index a7fc352..017b509 100644 --- a/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp +++ b/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp @@ -12,7 +12,7 @@ #include "AArch64.h" #include "AArch64RegisterInfo.h" #include "AArch64Subtarget.h" -#include "MCTargetDesc/AArch64BaseInfo.h" +#include "Utils/AArch64BaseInfo.h" #include "llvm/MC/MCInst.h" #include "llvm/MC/MCInstrDesc.h" #include "llvm/MC/MCExpr.h" |