[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / lldb / source / Breakpoint / BreakpointPrecondition.cpp
blob2e7cb19e27287f292464af372bd1f4feab0e960e
1 //===-- BreakpointPrecondition.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/BreakpointPrecondition.h"
10 #include "lldb/Utility/Status.h"
12 using namespace lldb_private;
14 bool BreakpointPrecondition::EvaluatePrecondition(
15 StoppointCallbackContext &context) {
16 return false;
19 void BreakpointPrecondition::GetDescription(Stream &stream,
20 lldb::DescriptionLevel level) {}
22 Status BreakpointPrecondition::ConfigurePrecondition(Args &args) {
23 return Status::FromErrorString(
24 "Base breakpoint precondition has no options.");