diff options
| author | Fangrui Song <maskray@google.com> | 2019-09-12 08:59:17 +0000 | 
|---|---|---|
| committer | Fangrui Song <maskray@google.com> | 2019-09-12 08:59:17 +0000 | 
| commit | 786ce3fbd625710c93c7b967cf561d294f3786c9 (patch) | |
| tree | 9196089f3099f1cf310185977e0623ae1fd3274c | |
| parent | 60ff4dd9cd8a5052067b2dee1fc68bfba1f695cc (diff) | |
| download | bcm5719-llvm-786ce3fbd625710c93c7b967cf561d294f3786c9.tar.gz bcm5719-llvm-786ce3fbd625710c93c7b967cf561d294f3786c9.zip  | |
[ELF] Fix a common-page-size typo
llvm-svn: 371716
| -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=");  }  | 

