diff options
author | 2023-07-13 13:43:12 +0000 | |
---|---|---|
committer | 2023-07-14 08:45:01 +0000 | |
commit | 028fb48ae2bddeef20b91e4a1582ce58df724741 (patch) | |
tree | 412a498c59cea952598261fa1f76c0b429655c51 /dex2oat/driver/compiler_driver.cc | |
parent | 53472ff9f59c6e6d1494fe767b9137794b8d5f0f (diff) |
Clean up ART intrinsics.
Change `intrinsics_list.h` to a normal include file instead
of the weird include-use-and-undef pattern. Prefix macros
defined in that file with `ART_`.
And also remove blank lines at end of some files and address
some comments on merged changes.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 283082089
Change-Id: I9c462f973c0c4bb53eff39fbe191014f6321d7c5
Diffstat (limited to 'dex2oat/driver/compiler_driver.cc')
-rw-r--r-- | dex2oat/driver/compiler_driver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/driver/compiler_driver.cc b/dex2oat/driver/compiler_driver.cc index a963fcfe92..24a861125c 100644 --- a/dex2oat/driver/compiler_driver.cc +++ b/dex2oat/driver/compiler_driver.cc @@ -1016,7 +1016,7 @@ static void VerifyClassesContainingIntrinsicsAreImageClasses(HashSet<std::string #define CHECK_INTRINSIC_OWNER_CLASS(_, __, ___, ____, _____, ClassName, ______, _______) \ CHECK(image_classes->find(std::string_view(ClassName)) != image_classes->end()); - INTRINSICS_LIST(CHECK_INTRINSIC_OWNER_CLASS) + ART_INTRINSICS_LIST(CHECK_INTRINSIC_OWNER_CLASS) #undef CHECK_INTRINSIC_OWNER_CLASS } |