Merge "Enable execute-only memory layouts by default."

This commit is contained in:
Ivan Lozano 2019-01-15 23:29:51 +00:00 committed by Gerrit Code Review
commit 0b475181a6
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}