diff options
author | 2021-10-21 10:52:47 +0100 | |
---|---|---|
committer | 2021-11-09 17:22:30 +0000 | |
commit | 970ba219234b16918e68e2b4ffddb2b896225b3e (patch) | |
tree | 335b9a51612a386e60f7c8746aaccf86d3305842 /runtime/compiler_callbacks.h | |
parent | e10abe7d84ed44d61401d24073f01d1c7777e17c (diff) |
Inline across dex files for compiler options' non-BCP methods
We are now able to inline across dexfiles for the dexfiles present
in compiler options' dex_files_for_oat_file_.
Note that the dex files in the Class Loader Context are not included
in this implementation since they will not have an OatDexFile.
Bug: 154012332
Test: ART tests
Change-Id: I7704217d936afecb66fc952c10529bb1030d6981
Diffstat (limited to 'runtime/compiler_callbacks.h')
-rw-r--r-- | runtime/compiler_callbacks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/compiler_callbacks.h b/runtime/compiler_callbacks.h index 23379a9550..c71d4ac1e2 100644 --- a/runtime/compiler_callbacks.h +++ b/runtime/compiler_callbacks.h @@ -18,9 +18,9 @@ #define ART_RUNTIME_COMPILER_CALLBACKS_H_ #include "base/locks.h" +#include "class_status.h" #include "dex/class_reference.h" #include "dex/method_reference.h" -#include "class_status.h" namespace art { |