[ELF] Fix a common-page-size typo

llvm-svn: 371716
This commit is contained in:
Fangrui Song 2019-09-12 08:59:17 +00:00
parent 60ff4dd9cd
commit 786ce3fbd6
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ static bool isKnownZFlag(StringRef s) {
s == "norelro" || s == "noseparate-code" || s == "notext" ||
s == "now" || s == "origin" || s == "relro" || s == "retpolineplt" ||
s == "rodynamic" || s == "text" || s == "undefs" || s == "wxneeded" ||
s.startswith("common-page-size") || s.startswith("max-page-size=") ||
s.startswith("common-page-size=") || s.startswith("max-page-size=") ||
s.startswith("stack-size=");
}