mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Remove an unused private field added r227405 to fix a Clang warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227415 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f064279b22
commit
da39e6dcf9
@ -27,13 +27,12 @@ using namespace llvm;
|
||||
|
||||
namespace {
|
||||
class WinEHPrepare : public FunctionPass {
|
||||
const TargetMachine *TM;
|
||||
FunctionPass *DwarfPrepare;
|
||||
|
||||
public:
|
||||
static char ID; // Pass identification, replacement for typeid.
|
||||
WinEHPrepare(const TargetMachine *TM = nullptr)
|
||||
: FunctionPass(ID), TM(TM), DwarfPrepare(createDwarfEHPass(TM)) {
|
||||
: FunctionPass(ID), DwarfPrepare(createDwarfEHPass(TM)) {
|
||||
initializeDominatorTreeWrapperPassPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user