Skip to content

Commit 4806f94

Browse files
committed
remove unneeded headers
1 parent a92ddf5 commit 4806f94

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

llvm/include/llvm/CodeGen/AsmPrinter.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ class AsmPrinter : public MachineFunctionPass {
188188
/// For dso_local functions, the current $local alias for the function.
189189
MCSymbol *CurrentFnBeginLocal = nullptr;
190190

191-
/// A handle to the EH info emitter (if present)
192-
SmallVector<std::unique_ptr<AsmPrinterHandler>, 1>
193-
EHHandlers; // only for EHHandler subtypes, but some c++ compilers will
194-
// incorrectly warn us if we declare that
191+
/// A handle to the EH info emitter (if present).
192+
// Only for EHStreamer subtypes, but some C++ compilers will incorrectly warn
193+
// us if we declare that directly.
194+
SmallVector<std::unique_ptr<AsmPrinterHandler>, 1> EHHandlers;
195195

196196
// A vector of all Debuginfo emitters we should use. Protected so that
197197
// targets can add their own. This vector maintains ownership of the

llvm/lib/CodeGen/AsmPrinter/PseudoProbePrinter.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#define LLVM_LIB_CODEGEN_ASMPRINTER_PSEUDOPROBEPRINTER_H
1515

1616
#include "llvm/ADT/DenseMap.h"
17-
#include "llvm/CodeGen/AsmPrinter.h"
1817

1918
namespace llvm {
2019

llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_WINCFGUARD_H
1515
#define LLVM_LIB_CODEGEN_ASMPRINTER_WINCFGUARD_H
1616

17-
#include "EHStreamer.h"
17+
#include "llvm/CodeGen/AsmPrinterHandler.h"
1818
#include "llvm/Support/Compiler.h"
1919
#include <vector>
2020

0 commit comments

Comments
 (0)