[Lldb-commits] [lldb] [lldb][AIX] Added base file for AIX Register Context (PR #144645)
Hemang Gadhavi via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 18 23:37:14 PDT 2025
================
@@ -0,0 +1,66 @@
+//===-- NativeRegisterContextAIX.cpp ------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "NativeRegisterContextAIX.h"
+#include "Plugins/Process/AIX/NativeProcessAIX.h"
+
+using namespace lldb_private;
+using namespace lldb_private::process_aix;
+
+lldb::ByteOrder NativeRegisterContextAIX::GetByteOrder() const {
+ return m_thread.GetProcess().GetByteOrder();
----------------
HemangGadhavi wrote:
Done
https://github.com/llvm/llvm-project/pull/144645
More information about the lldb-commits
mailing list