diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2020-09-17 13:08:42 +0100 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2020-09-17 13:18:54 +0100 |
commit | abe0d8551da52ea1d0d8ad5f9ad71d22a7cd9928 (patch) | |
tree | afc66529d0f03d21d5537361e8df92a73e174332 /llvm/lib/Bitcode/Reader/MetadataLoader.cpp | |
parent | ed53ff4cde331e0ffeb492dca6281aaeea2cd8cf (diff) | |
download | llvm-abe0d8551da52ea1d0d8ad5f9ad71d22a7cd9928.zip llvm-abe0d8551da52ea1d0d8ad5f9ad71d22a7cd9928.tar.gz llvm-abe0d8551da52ea1d0d8ad5f9ad71d22a7cd9928.tar.bz2 |
MetadataLoader.cpp - remove unnecessary StringRef include. NFCI.
Already included in MetadataLoader.h
Diffstat (limited to 'llvm/lib/Bitcode/Reader/MetadataLoader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/MetadataLoader.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Bitcode/Reader/MetadataLoader.cpp b/llvm/lib/Bitcode/Reader/MetadataLoader.cpp index 821185e..874bb84 100644 --- a/llvm/lib/Bitcode/Reader/MetadataLoader.cpp +++ b/llvm/lib/Bitcode/Reader/MetadataLoader.cpp @@ -17,7 +17,6 @@ #include "llvm/ADT/None.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallString.h" -#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Twine.h" @@ -63,7 +62,6 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/Debug.h" -#include "llvm/Support/Error.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/MemoryBuffer.h" @@ -75,7 +73,6 @@ #include <deque> #include <limits> #include <map> -#include <memory> #include <string> #include <system_error> #include <tuple> |