mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
arm_interface: Mark variables as const where applicable in LogBacktrace()
Two of these variables have fixed values, so we can make that immediately obvious from the get-go.
This commit is contained in:
parent
387bffda5e
commit
776ce5d74c
1 changed files with 4 additions and 3 deletions
|
@ -11,10 +11,11 @@ namespace Core {
|
|||
void ARM_Interface::LogBacktrace() {
|
||||
VAddr fp = GetReg(29);
|
||||
VAddr lr = GetReg(30);
|
||||
VAddr sp = GetReg(13);
|
||||
VAddr pc = GetPC();
|
||||
const VAddr sp = GetReg(13);
|
||||
const VAddr pc = GetPC();
|
||||
|
||||
LOG_ERROR(Core_ARM, "Backtrace, sp={:016X}, pc={:016X}", sp, pc);
|
||||
for (;;) {
|
||||
while (true) {
|
||||
LOG_ERROR(Core_ARM, "{:016X}", lr);
|
||||
if (!fp) {
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue