Use TinyPtrVector<Ty *> instead of SmallVector<Ty *, 1>.
authorRui Ueyama <ruiu@google.com>
Tue, 23 Feb 2016 03:34:37 +0000 (03:34 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 23 Feb 2016 03:34:37 +0000 (03:34 +0000)
Thanks to Sean Silva for the suggestion.

llvm-svn: 261606

lld/ELF/InputSection.h

index 26956c7..f0d4972 100644 (file)
@@ -12,6 +12,7 @@
 
 #include "Config.h"
 #include "lld/Core/LLVM.h"
+#include "llvm/ADT/TinyPtrVector.h"
 #include "llvm/Object/ELF.h"
 
 namespace lld {
@@ -160,7 +161,7 @@ public:
   void writeTo(uint8_t *Buf);
 
   // Relocation sections that refer to this one.
-  SmallVector<const Elf_Shdr *, 1> RelocSections;
+  llvm::TinyPtrVector<const Elf_Shdr *> RelocSections;
 
   // The offset from beginning of the output sections this section was assigned
   // to. The writer sets a value.