[lld] 4138fc9 - comment typo fix to cycle bots

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 30 19:17:59 PDT 2019


Author: Nico Weber
Date: 2019-10-30T22:17:52-04:00
New Revision: 4138fc9567f74d23ae4b3658e925da53b8368a44

URL: https://github.com/llvm/llvm-project/commit/4138fc9567f74d23ae4b3658e925da53b8368a44
DIFF: https://github.com/llvm/llvm-project/commit/4138fc9567f74d23ae4b3658e925da53b8368a44.diff

LOG: comment typo fix to cycle bots

Added: 
    

Modified: 
    lld/ELF/Target.h

Removed: 
    


################################################################################
diff  --git a/lld/ELF/Target.h b/lld/ELF/Target.h
index effa6001f6d9..39b999176717 100644
--- a/lld/ELF/Target.h
+++ b/lld/ELF/Target.h
@@ -131,8 +131,8 @@ class TargetInfo {
 
 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;
 };


        


More information about the llvm-commits mailing list