diff options
author | 2024-12-17 14:30:47 +0100 | |
---|---|---|
committer | 2024-12-17 14:30:47 +0100 | |
commit | b81fc91a4afbfc5890efa6032c234e9e0e3a7cab (patch) | |
tree | 62d796b94741496c8e399bed0de8254916838ac4 /android/config.go | |
parent | 9e1f9b9d73dae437aadd9b204136b2fcc8fc4a98 (diff) |
Configure R8 store-store-fence constructor inlining when enabled
This optimization will be enabled when RELEASE_R8_STORE_STORE_FENCE_CONSTRUCTOR_INLINING is enabled.
Bug:
Test: Existing
Change-Id: Ia1dc0600e51e396da518daa27cf9c73701095766
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index d78bbf774..fbf950487 100644 --- a/android/config.go +++ b/android/config.go @@ -2163,6 +2163,10 @@ func (c *config) UseTransitiveJarsInClasspath() bool { return c.productVariables.GetBuildFlagBool("RELEASE_USE_TRANSITIVE_JARS_IN_CLASSPATH") } +func (c *config) UseR8StoreStoreFenceConstructorInlining() bool { + return c.productVariables.GetBuildFlagBool("RELEASE_R8_STORE_STORE_FENCE_CONSTRUCTOR_INLINING") +} + func (c *config) UseDexV41() bool { return c.productVariables.GetBuildFlagBool("RELEASE_USE_DEX_V41") } |