diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2022-02-05 18:04:23 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2022-02-05 18:05:05 +0000 | 
| commit | ecbca9f5fb7d7613d2b94982c4825eb0d33d6842 (patch) | |
| tree | 3a4038f3b7bafaeade9fd6146ea8021237616657 /llvm/lib/CodeGen/IfConversion.cpp | |
| parent | 6f8fc217eaa12bf657be1c6468ed9938d10168b3 (diff) | |
Diffstat (limited to 'llvm/lib/CodeGen/IfConversion.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index 681e2f3dc848..1b20d1da20ad 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/lib/CodeGen/IfConversion.cpp @@ -1211,11 +1211,11 @@ bool IfConverter::FeasibilityAnalysis(BBInfo &BBI,  void IfConverter::AnalyzeBlock(      MachineBasicBlock &MBB, std::vector<std::unique_ptr<IfcvtToken>> &Tokens) {    struct BBState { -    BBState(MachineBasicBlock &MBB) : MBB(&MBB), SuccsAnalyzed(false) {} +    BBState(MachineBasicBlock &MBB) : MBB(&MBB) {}      MachineBasicBlock *MBB;      /// This flag is true if MBB's successors have been analyzed. -    bool SuccsAnalyzed; +    bool SuccsAnalyzed = false;    };    // Push MBB to the stack.  | 
