[lld] Add missing includes (NFC)
authorNikita Popov <nikita.ppv@gmail.com>
Thu, 3 Jun 2021 16:54:23 +0000 (18:54 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Thu, 3 Jun 2021 16:55:18 +0000 (18:55 +0200)
Fix lld build after 983565a6fe4a9f40c7caf82b65c650c20dbcc104.

lld/ELF/Thunks.h
lld/MachO/OutputSegment.h
lld/include/lld/Common/Timer.h

index 21e99a0..5558da1 100644 (file)
@@ -9,6 +9,7 @@
 #ifndef LLD_ELF_THUNKS_H
 #define LLD_ELF_THUNKS_H
 
+#include "llvm/ADT/SmallVector.h"
 #include "Relocations.h"
 
 namespace lld {
index e5d87ba..10cca2a 100644 (file)
@@ -13,6 +13,7 @@
 #include "lld/Common/LLVM.h"
 
 #include <limits>
+#include <vector>
 
 namespace lld {
 namespace macho {
index 95e811a..b37388c 100644 (file)
@@ -16,6 +16,7 @@
 #include <chrono>
 #include <map>
 #include <memory>
+#include <vector>
 
 namespace lld {