8051712: regression Test7107135 crashes

On AARCH64, make ElfFile::specifies_noexecstack() default to noexectstack

Reviewed-by: dholmes, dlong, aph
This commit is contained in:
Chris Plummer 2015-05-26 11:26:50 -07:00
parent 48e61a6f7e
commit 77588c66b4

View File

@ -261,7 +261,12 @@ bool ElfFile::specifies_noexecstack() {
}
}
}
// AARCH64 defaults to noexecstack. All others default to execstack.
#ifdef AARCH64
return true;
#else
return false;
#endif
}
#endif