comment typo fix to cycle bots
authorNico Weber <nicolasweber@gmx.de>
Thu, 31 Oct 2019 02:17:52 +0000 (22:17 -0400)
committerNico Weber <nicolasweber@gmx.de>
Thu, 31 Oct 2019 02:17:52 +0000 (22:17 -0400)
lld/ELF/Target.h

index effa600..39b9991 100644 (file)
@@ -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;
 };