diff options
-rw-r--r-- | lld/ELF/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp index 5022c81df78..0bc40f0909f 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="); } |