Skip to content

Commit

Permalink
[mono][interp] Enable tiering by default
Browse files Browse the repository at this point in the history
  • Loading branch information
BrzVlad committed May 24, 2022
1 parent 20f0eeb commit e1d772e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono/mini/interp/interp.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ enum {
INTERP_OPT_SUPER_INSTRUCTIONS = 4,
INTERP_OPT_BBLOCKS = 8,
INTERP_OPT_TIERING = 16,
INTERP_OPT_DEFAULT = INTERP_OPT_INLINE | INTERP_OPT_CPROP | INTERP_OPT_SUPER_INSTRUCTIONS | INTERP_OPT_BBLOCKS
INTERP_OPT_DEFAULT = INTERP_OPT_INLINE | INTERP_OPT_CPROP | INTERP_OPT_SUPER_INSTRUCTIONS | INTERP_OPT_BBLOCKS | INTERP_OPT_TIERING
};

typedef struct _InterpMethodArguments InterpMethodArguments;
Expand Down

0 comments on commit e1d772e

Please sign in to comment.