diff options
| -rw-r--r-- | lld/ELF/Target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/Target.h b/lld/ELF/Target.h index effa6001f6d..39b99917671 100644 --- a/lld/ELF/Target.h +++ b/lld/ELF/Target.h @@ -131,8 +131,8 @@ public: protected: // On FreeBSD x86_64 the first page cannot be mmaped. - // On Linux that is controled by vm.mmap_min_addr. At least on some x86_64 - // installs that is 65536, so the first 15 pages cannot be used. + // On Linux this is controlled by vm.mmap_min_addr. At least on some x86_64 + // installs this is set to 65536, so the first 15 pages cannot be used. // Given that, the smallest value that can be used in here is 0x10000. uint64_t defaultImageBase = 0x10000; }; |

