[lld] r198024 - Fix some indentation issues, I saw while reading this file.

Joey Gouly joey.gouly at gmail.com
Wed Dec 25 11:39:09 PST 2013


Author: joey
Date: Wed Dec 25 13:39:08 2013
New Revision: 198024

URL: http://llvm.org/viewvc/llvm-project?rev=198024&view=rev
Log:
Fix some indentation issues, I saw while reading this file.

Modified:
    lld/trunk/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp

Modified: lld/trunk/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp?rev=198024&r1=198023&r2=198024&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp (original)
+++ lld/trunk/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp Wed Dec 25 13:39:08 2013
@@ -133,15 +133,15 @@ private:
   static uint64_t alignTo(uint64_t value, uint8_t align2);
   typedef llvm::DenseMap<const Atom*, uint32_t> AtomToIndex;
   struct AtomAndIndex { const Atom *atom; uint32_t index; };
-	struct AtomSorter {	
-		bool operator()(const AtomAndIndex &left, const AtomAndIndex &right);
+  struct AtomSorter {
+    bool operator()(const AtomAndIndex &left, const AtomAndIndex &right);
   };
-	struct SegmentSorter {	
-		bool operator()(const SegmentInfo *left, const SegmentInfo *right);
+  struct SegmentSorter {
+    bool operator()(const SegmentInfo *left, const SegmentInfo *right);
     static unsigned weight(const SegmentInfo *);
   };
-	struct TextSectionSorter {	
-		bool operator()(const SectionInfo *left, const SectionInfo *right);
+  struct TextSectionSorter {
+    bool operator()(const SectionInfo *left, const SectionInfo *right);
     static unsigned weight(const SectionInfo *);
   };
 





More information about the llvm-commits mailing list