summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
diff options
context:
space:
mode:
authorOleksiy Vyalov <ovyalov@google.com>2015-08-10 21:49:50 +0000
committerOleksiy Vyalov <ovyalov@google.com>2015-08-10 21:49:50 +0000
commit9dcdd2ee0370dd8d43b0a668a11721038aeaf2d4 (patch)
tree09d15c53f49047dfe7e6a506e358f1494c62fc5e /lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
parente5101e2016311c315119c8ad50a970b6b0c87cc7 (diff)
downloadbcm5719-llvm-9dcdd2ee0370dd8d43b0a668a11721038aeaf2d4.tar.gz
bcm5719-llvm-9dcdd2ee0370dd8d43b0a668a11721038aeaf2d4.zip
Revert r244308 since it's introducing test regressions on Linux:
- TestLldbGdbServer.py both clang & gcc, i386 and x86_64 - TestConstVariables.py gcc, i386 and x86_64 - 112 failures clang, i386 llvm-svn: 244514
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp')
-rw-r--r--lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
index 53fa4169bff..c31b0ee7de5 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
@@ -57,7 +57,7 @@ typedef struct _GPR
uint64_t pc;
uint64_t ic;
uint64_t dummy;
-} GPR_freebsd_mips;
+} GPR;
//---------------------------------------------------------------------------
// Include RegisterInfos_mips64 to declare our g_register_infos_mips64 structure.
@@ -74,7 +74,7 @@ RegisterContextFreeBSD_mips64::RegisterContextFreeBSD_mips64(const ArchSpec &tar
size_t
RegisterContextFreeBSD_mips64::GetGPRSize() const
{
- return sizeof(GPR_freebsd_mips);
+ return sizeof(GPR);
}
const RegisterInfo *
OpenPOWER on IntegriCloud