diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:10:56 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:10:56 +0000 | 
| commit | 044eb2f6afba375a914ac9d8024f8f5142bb912e (patch) | |
| tree | 1475247dc9f9fe5be155ebd4c9069c75aadf8c20 /include/llvm/CodeGen/MachineLoopInfo.h | |
| parent | eb70dddbd77e120e5d490bd8fbe7ff3f8fa81c6b (diff) | |
Notes
Diffstat (limited to 'include/llvm/CodeGen/MachineLoopInfo.h')
| -rw-r--r-- | include/llvm/CodeGen/MachineLoopInfo.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/llvm/CodeGen/MachineLoopInfo.h b/include/llvm/CodeGen/MachineLoopInfo.h index 58cffaade9d2..104655e45524 100644 --- a/include/llvm/CodeGen/MachineLoopInfo.h +++ b/include/llvm/CodeGen/MachineLoopInfo.h @@ -44,8 +44,6 @@ extern template class LoopBase<MachineBasicBlock, MachineLoop>;  class MachineLoop : public LoopBase<MachineBasicBlock, MachineLoop> {  public: -  MachineLoop(); -    /// Return the "top" block in the loop, which is the first block in the linear    /// layout, ignoring any parts of the loop not contiguous with the part that    /// contains the header. @@ -76,6 +74,8 @@ private:    explicit MachineLoop(MachineBasicBlock *MBB)      : LoopBase<MachineBasicBlock, MachineLoop>(MBB) {} + +  MachineLoop() = default;  };  // Implementation in LoopInfoImpl.h | 
