diff options
author | Lioncash <mathew1800@gmail.com> | 2015-12-06 15:07:59 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-12-06 15:07:59 -0500 |
commit | 1ea0702eaa8bbafe4554ed777df61a28c44bae55 (patch) | |
tree | f44065b364c04c8c20b57316f315ee7e476c6655 /src | |
parent | de9a625c7eaa58b2aae6ec7a0d248612f012aa98 (diff) |
arm_interface: Make GetNumInstructions const
Diffstat (limited to 'src')
-rw-r--r-- | src/core/arm/arm_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 39a103f7c..533067d4f 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -142,7 +142,7 @@ public: virtual void PrepareReschedule() = 0; /// Getter for num_instructions - u64 GetNumInstructions() { + u64 GetNumInstructions() const { return num_instructions; } |