[lld] 36d4f42 - [lld] Fix typo for processAux; NFC

Xiaodong Liu via llvm-commits llvm-commits at lists.llvm.org
Sun May 8 19:44:21 PDT 2022


Author: Xiaodong Liu
Date: 2022-05-09T10:21:47+08:00
New Revision: 36d4f42c36ea9c64e2d29f6d5bc3ac0384d7eb92

URL: https://github.com/llvm/llvm-project/commit/36d4f42c36ea9c64e2d29f6d5bc3ac0384d7eb92
DIFF: https://github.com/llvm/llvm-project/commit/36d4f42c36ea9c64e2d29f6d5bc3ac0384d7eb92.diff

LOG: [lld] Fix typo for processAux; NFC

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D125163

Added: 
    

Modified: 
    lld/ELF/Relocations.cpp

Removed: 
    


################################################################################
diff  --git a/lld/ELF/Relocations.cpp b/lld/ELF/Relocations.cpp
index 0ba761728442d..a272be5480e32 100644
--- a/lld/ELF/Relocations.cpp
+++ b/lld/ELF/Relocations.cpp
@@ -943,7 +943,7 @@ static bool canDefineSymbolInExecutable(Symbol &sym) {
 }
 
 // Returns true if a given relocation can be computed at link-time.
-// This only handles relocation types expected in processRelocAux.
+// This only handles relocation types expected in processAux.
 //
 // For instance, we know the offset from a relocation to its target at
 // link-time if the relocation is PC-relative and refers a


        


More information about the llvm-commits mailing list