summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ivan Lozano <ivanlozano@google.com> 2019-01-15 23:29:51 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2019-01-15 23:29:51 +0000
commit0b475181a68f92fabcc1b036a414bbbeb3665fd7 (patch)
treef7389b0a6bf5b6a3b9e5efed215c85632bf046df
parent073941d780016e0770f083e1edd425739d15b80a (diff)
parentb84fc9dc32b56dd8aaf9ab7e83f32b5bf2ce2abe (diff)
Merge "Enable execute-only memory layouts by default."
-rw-r--r--android/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/config.go b/android/config.go
index 925ca9440..7c1278e58 100644
--- a/android/config.go
+++ b/android/config.go
@@ -649,7 +649,7 @@ func (c *config) EnableCFI() bool {
func (c *config) EnableXOM() bool {
if c.productVariables.EnableXOM == nil {
- return false
+ return true
} else {
return Bool(c.productVariables.EnableXOM)
}