[AMDGPU] Infer amdgpu-no-flat-scratch-init attribute in AMDGPUAttributor (#94647)
[llvm-project.git] / lldb / source / Commands / CommandObjectRegister.h
blob671ffc570147a3cf465b57da7e66d208216d3611
1 //===-- CommandObjectRegister.h ---------------------------------*- C++ -*-===//
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 #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H
10 #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H
12 #include "lldb/Interpreter/CommandObjectMultiword.h"
14 namespace lldb_private {
16 // CommandObjectRegister
18 class CommandObjectRegister : public CommandObjectMultiword {
19 public:
20 // Constructors and Destructors
21 CommandObjectRegister(CommandInterpreter &interpreter);
23 ~CommandObjectRegister() override;
25 private:
26 // For CommandObjectRegister only
27 CommandObjectRegister(const CommandObjectRegister &) = delete;
28 const CommandObjectRegister &
29 operator=(const CommandObjectRegister &) = delete;
32 } // namespace lldb_private
34 #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTREGISTER_H