From ccf923305c3383d5d3c2649f5d11d5273e1efc02 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 24 May 2019 02:15:17 -0400 Subject: [PATCH] a32_interface: Remove duplicated documentation comments These already exist in the header, so these ones can be removed. --- src/backend/x64/a32_interface.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/backend/x64/a32_interface.cpp b/src/backend/x64/a32_interface.cpp index a8b0fff9..70dc7b59 100644 --- a/src/backend/x64/a32_interface.cpp +++ b/src/backend/x64/a32_interface.cpp @@ -245,7 +245,6 @@ const std::array& Context::ExtRegs() const { return impl->jit_state.ExtReg; } -/// View and modify CPSR. std::uint32_t Context::Cpsr() const { return impl->jit_state.Cpsr(); } @@ -253,7 +252,6 @@ void Context::SetCpsr(std::uint32_t value) { impl->jit_state.SetCpsr(value); } -/// View and modify FPSCR. std::uint32_t Context::Fpscr() const { return impl->jit_state.Fpscr(); }