diff options
author | Richard Trieu <rtrieu@google.com> | 2019-05-14 22:41:58 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2019-05-14 22:41:58 +0000 |
commit | e982b42003cb47a7b24ba17c8b8fc836693329fd (patch) | |
tree | 2b2c0877b6575c5363a99f23660bcc93b72ab781 /llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp | |
parent | 048a97bca4da64418fd270a2bc3841ca0f602087 (diff) | |
download | bcm5719-llvm-e982b42003cb47a7b24ba17c8b8fc836693329fd.tar.gz bcm5719-llvm-e982b42003cb47a7b24ba17c8b8fc836693329fd.zip |
[AVR] Create a TargetInfo header. NFC
Move the declarations of getThe<Name>Target() functions into a new header in
TargetInfo and make users of these functions include this new header.
This fixes a layering problem.
llvm-svn: 360721
Diffstat (limited to 'llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp')
-rw-r--r-- | llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp b/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp index ca554056f07..e203a5069c8 100644 --- a/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp +++ b/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp @@ -14,6 +14,7 @@ #include "AVRRegisterInfo.h" #include "AVRSubtarget.h" #include "MCTargetDesc/AVRMCTargetDesc.h" +#include "TargetInfo/AVRTargetInfo.h" #include "llvm/MC/MCAsmInfo.h" #include "llvm/MC/MCContext.h" |