arm_interface: Make LogBacktrace() a const member function
This function doesn't modify instance state, so it can be made const.
This commit is contained in:
parent
776ce5d74c
commit
a17dd30057
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
#include "core/memory.h"
|
||||
|
||||
namespace Core {
|
||||
void ARM_Interface::LogBacktrace() {
|
||||
void ARM_Interface::LogBacktrace() const {
|
||||
VAddr fp = GetReg(29);
|
||||
VAddr lr = GetReg(30);
|
||||
const VAddr sp = GetReg(13);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue