MILexer.h/cpp - remove unused includes. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 21 May 2020 16:12:15 +0000 (17:12 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Fri, 22 May 2020 09:49:10 +0000 (10:49 +0100)
Remove duplicates in MILexer.cpp that are already included in MILexer.h.

llvm/lib/CodeGen/MIRParser/MILexer.cpp
llvm/lib/CodeGen/MIRParser/MILexer.h

index 0fbedc4..98af46d 100644 (file)
 //===----------------------------------------------------------------------===//
 
 #include "MILexer.h"
-#include "llvm/ADT/APSInt.h"
 #include "llvm/ADT/None.h"
-#include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/ADT/StringSwitch.h"
-#include "llvm/ADT/StringRef.h"
 #include "llvm/ADT/Twine.h"
 #include <algorithm>
 #include <cassert>
index c804e16..ef16da9 100644 (file)
@@ -15,7 +15,6 @@
 #define LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H
 
 #include "llvm/ADT/APSInt.h"
-#include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/StringRef.h"
 #include <string>