Skip to content

Commit a2a2e62

Browse files
committed
Rename files to dbreg.
1 parent 9dfc0e3 commit a2a2e62

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lldb/source/Plugins/Process/Linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ add_lldb_library(lldbPluginProcessLinux
88
NativeRegisterContextLinux.cpp
99
NativeRegisterContextLinux_arm.cpp
1010
NativeRegisterContextLinux_arm64.cpp
11-
NativeRegisterContextLinuxArm64Shared.cpp
11+
NativeRegisterContextLinux_arm64dbreg.cpp
1212
NativeRegisterContextLinux_loongarch64.cpp
1313
NativeRegisterContextLinux_ppc64le.cpp
1414
NativeRegisterContextLinux_riscv64.cpp

lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#if defined(__arm__) || defined(__arm64__) || defined(__aarch64__)
1010

1111
#include "NativeRegisterContextLinux_arm.h"
12-
#include "NativeRegisterContextLinuxArm64Shared.h"
1312

1413
#include "Plugins/Process/Linux/NativeProcessLinux.h"
1514
#include "Plugins/Process/Linux/Procfs.h"
@@ -25,6 +24,7 @@
2524
#include <sys/uio.h>
2625

2726
#if defined(__arm64__) || defined(__aarch64__)
27+
#include "NativeRegisterContextLinux_arm64dbreg.h"
2828
#include "lldb/Host/linux/Ptrace.h"
2929
#include <asm/ptrace.h>
3030
#endif

lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "NativeRegisterContextLinuxArm64Shared.h"
109
#if defined(__arm64__) || defined(__aarch64__)
1110

12-
#include "NativeRegisterContextLinux_arm.h"
1311
#include "NativeRegisterContextLinux_arm64.h"
12+
#include "NativeRegisterContextLinux_arm.h"
13+
#include "NativeRegisterContextLinux_arm64dbreg.h"
1414

1515
#include "lldb/Host/HostInfo.h"
1616
#include "lldb/Host/common/NativeProcessProtocol.h"

lldb/source/Plugins/Process/Linux/NativeRegisterContextLinuxArm64Shared.cpp renamed to lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64dbreg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "NativeRegisterContextLinuxArm64Shared.h"
1+
#include "NativeRegisterContextLinux_arm64dbreg.h"
22

33
using namespace lldb_private::process_linux::arm64;
44

0 commit comments

Comments
 (0)