summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-30 20:43:15 -0500
committerLioncash <mathew1800@gmail.com>2018-12-30 20:43:17 -0500
commit776ce5d74c1dd5a6f81a1461e2609e01ea29d1c0 (patch)
tree425c35e02471ab8aaa747ba939148f0b3b9c65cf /src
parent387bffda5e61959efc24165ba5464c7b4a431147 (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/arm_interface.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp
index f01cc4b6e..8ab605d21 100644
--- a/src/core/arm/arm_interface.cpp
+++ b/src/core/arm/arm_interface.cpp
@@ -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;