Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Breakpoint / Stoppoint.cpp
blob94e97cd4542ff9dde2a815fdafa3bdf4039de943
1 //===-- Stoppoint.cpp -----------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "lldb/Breakpoint/Stoppoint.h"
10 #include "lldb/lldb-private.h"
13 using namespace lldb;
14 using namespace lldb_private;
16 // Stoppoint constructor
17 Stoppoint::Stoppoint() = default;
19 // Destructor
20 Stoppoint::~Stoppoint() = default;
22 break_id_t Stoppoint::GetID() const { return m_bid; }
24 void Stoppoint::SetID(break_id_t bid) { m_bid = bid; }