diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-11-19 14:23:51 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-11-19 14:37:18 +0100 |
commit | 714445e406f043e861024f394fd58eb26c15e51a (patch) | |
tree | 03c565a3dac85d6daac3dd33bfd5c1f6e6357bfd | |
parent | 6fd11b14f604914df4f777f4c7ff20dbbc50877b (diff) | |
download | bcm5719-llvm-714445e406f043e861024f394fd58eb26c15e51a.tar.gz bcm5719-llvm-714445e406f043e861024f394fd58eb26c15e51a.zip |
Fix modules build by adding missing includes
-rw-r--r-- | llvm/include/llvm/Analysis/Utils/Local.h | 1 | ||||
-rw-r--r-- | llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/Analysis/Utils/Local.h b/llvm/include/llvm/Analysis/Utils/Local.h index a63bcec9bc4..98b931f9345 100644 --- a/llvm/include/llvm/Analysis/Utils/Local.h +++ b/llvm/include/llvm/Analysis/Utils/Local.h @@ -14,6 +14,7 @@ #ifndef LLVM_ANALYSIS_UTILS_LOCAL_H #define LLVM_ANALYSIS_UTILS_LOCAL_H +#include "llvm/ADT/Twine.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/GetElementPtrTypeIterator.h" diff --git a/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h b/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h index 08f2f54bcf9..fe432562c4f 100644 --- a/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h +++ b/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h @@ -26,6 +26,7 @@ #include "llvm/CodeGen/TargetOpcodes.h" #include "llvm/CodeGen/TargetRegisterInfo.h" #include "llvm/IR/Constants.h" +#include "llvm/IR/DataLayout.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" |