summaryrefslogtreecommitdiff
path: root/src/cpu/profile.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/profile.hh')
-rw-r--r--src/cpu/profile.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/profile.hh b/src/cpu/profile.hh
index 8fb0e3a8e..9d683959c 100644
--- a/src/cpu/profile.hh
+++ b/src/cpu/profile.hh
@@ -73,7 +73,7 @@ class FunctionProfile
FunctionProfile(const SymbolTable *symtab);
~FunctionProfile();
- ProfileNode *consume(ThreadContext *tc, StaticInstPtr inst);
+ ProfileNode *consume(ThreadContext *tc, const StaticInstPtr &inst);
ProfileNode *consume(const std::vector<Addr> &stack);
void clear();
void dump(ThreadContext *tc, std::ostream &out) const;
@@ -81,7 +81,7 @@ class FunctionProfile
};
inline ProfileNode *
-FunctionProfile::consume(ThreadContext *tc, StaticInstPtr inst)
+FunctionProfile::consume(ThreadContext *tc, const StaticInstPtr &inst)
{
if (!trace.trace(tc, inst))
return NULL;