From: Fangrui Song Date: Thu, 12 Sep 2019 08:59:17 +0000 (+0000) Subject: [ELF] Fix a common-page-size typo X-Git-Tag: llvmorg-11-init~9382 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=786ce3fbd625710c93c7b967cf561d294f3786c9;p=platform%2Fupstream%2Fllvm.git [ELF] Fix a common-page-size typo llvm-svn: 371716 --- diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp index 5022c81..0bc40f0 100644 --- a/lld/ELF/Driver.cpp +++ b/lld/ELF/Driver.cpp @@ -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="); }