OSDN Git Service

Fix typo and check commit access.
authorSameer Arora <sameerarora101@fb.com>
Thu, 2 Jul 2020 21:42:01 +0000 (14:42 -0700)
committerSameer Arora <sameerarora101@fb.com>
Thu, 2 Jul 2020 21:49:47 +0000 (14:49 -0700)
llvm/tools/llvm-objcopy/ELF/Object.cpp

index 7c1a387..944bfdf 100644 (file)
@@ -745,7 +745,7 @@ void SymbolTableSection::prepareForLayout() {
   // Reserve proper amount of space in section index table, so we can
   // layout sections correctly. We will fill the table with correct
   // indexes later in fillShdnxTable.
-  if (SectionIndexTable)  
+  if (SectionIndexTable)
     SectionIndexTable->reserve(Symbols.size());
 
   // Add all of our strings to SymbolNames so that SymbolNames has the right
@@ -1260,7 +1260,7 @@ std::unique_ptr<Object> IHexELFBuilder::build() {
 template <class ELFT> void ELFBuilder<ELFT>::setParentSegment(Segment &Child) {
   for (Segment &Parent : Obj.segments()) {
     // Every segment will overlap with itself but we don't want a segment to
-    // be it's own parent so we avoid that situation.
+    // be its own parent so we avoid that situation.
     if (&Child != &Parent && segmentOverlapsSegment(Child, Parent)) {
       // We want a canonical "most parental" segment but this requires
       // inspecting the ParentSegment.