diff options
Diffstat (limited to 'compiler/dex/mir_graph.h')
-rw-r--r-- | compiler/dex/mir_graph.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h index 3191fe9d57..2da8a98f00 100644 --- a/compiler/dex/mir_graph.h +++ b/compiler/dex/mir_graph.h @@ -564,6 +564,11 @@ class MIRGraph { bool SkipCompilation(std::string* skip_message); /* + * Should we skip the compilation of this method based on its name? + */ + bool SkipCompilationByName(const std::string& methodname); + + /* * Parse dex method and add MIR at current insert point. Returns id (which is * actually the index of the method in the m_units_ array). */ |