Skip to content

Commit

Permalink
exprjit/profiler: fix enters not showing up as jitted
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Mar 24, 2019
1 parent bacfcf9 commit 3934160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jit/core_templates.expr
Expand Up @@ -2621,14 +2621,14 @@
(arglist
(carg (tc) ptr)
(carg (^getf (^frame) MVMFrame static_info) ptr)
(carg (const (&QUOTE MVM_PROFILE_ENTER_SPESH) int_sz) int))))
(carg (const (&QUOTE MVM_PROFILE_ENTER_JIT) int_sz) int))))

(template: prof_enterinline
(callv (^func MVM_profile_log_enter)
(arglist
(carg (tc) ptr)
(carg (^spesh_slot_value $0) ptr)
(carg (const (&QUOTE MVM_PROFILE_ENTER_SPESH_INLINE) int_sz) int))))
(carg (const (&QUOTE MVM_PROFILE_ENTER_JIT_INLINE) int_sz) int))))

(template: prof_enternative
(callv (^func MVM_profile_log_enter_native)
Expand Down

0 comments on commit 3934160

Please sign in to comment.