diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-10-30 22:17:52 -0400 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-10-30 22:17:52 -0400 |
commit | 4138fc9567f74d23ae4b3658e925da53b8368a44 (patch) | |
tree | 604662528ef379016ee3de7e65f667768c555f7d | |
parent | e9f9dfab82bbaadc6b6d8d0eafba017ef5d94fd0 (diff) | |
download | bcm5719-llvm-4138fc9567f74d23ae4b3658e925da53b8368a44.tar.gz bcm5719-llvm-4138fc9567f74d23ae4b3658e925da53b8368a44.zip |
comment typo fix to cycle bots
-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; }; |