Prune trailing whitespaces in comment lines.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 5 Oct 2015 04:43:57 +0000 (04:43 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 5 Oct 2015 04:43:57 +0000 (04:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249285 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/FunctionLoweringInfo.h
include/llvm/CodeGen/GCMetadata.h
include/llvm/CodeGen/MachineConstantPool.h
include/llvm/CodeGen/MachineFunction.h
include/llvm/Object/MachO.h

index 3c8349315660126926c8b7febb3887644398bfe8..46bfd1e1c948568b3cbc24c71fc17078203000f4 100644 (file)
@@ -99,7 +99,7 @@ public:
   /// RegFixups - Registers which need to be replaced after isel is done.
   DenseMap<unsigned, unsigned> RegFixups;
 
-  /// StatepointStackSlots - A list of temporary stack slots (frame indices) 
+  /// StatepointStackSlots - A list of temporary stack slots (frame indices)
   /// used to spill values at a statepoint.  We store them here to enable
   /// reuse of the same stack slots across different statepoints in different
   /// basic blocks.
index 4b820cddb622e4d3a658e7d90a18ec91231f92e9..163117b0781ccc7f55b4afe5484718ec63a42a1b 100644 (file)
@@ -160,7 +160,7 @@ class GCModuleInfo : public ImmutablePass {
 public:
   /// Lookup the GCStrategy object associated with the given gc name.
   /// Objects are owned internally; No caller should attempt to delete the
-  /// returned objects. 
+  /// returned objects.
   GCStrategy *getGCStrategy(const StringRef Name);
 
   /// List of per function info objects.  In theory, Each of these
index 4a067f9317f72202830a6e1213b5f75227ac957c..d7db50c1c306b417bfc3a5d8cc6324974a160c5f 100644 (file)
@@ -110,13 +110,13 @@ public:
   /// whether or not it may generate a relocation entry.  This must be
   /// conservative, so if it might codegen to a relocatable entry, it should say
   /// so.  The return values are:
-  /// 
+  ///
   ///  0: This constant pool entry is guaranteed to never have a relocation
   ///     applied to it (because it holds a simple constant like '4').
   ///  1: This entry has relocations, but the entries are guaranteed to be
   ///     resolvable by the static linker, so the dynamic linker will never see
   ///     them.
-  ///  2: This entry may have arbitrary relocations. 
+  ///  2: This entry may have arbitrary relocations.
   unsigned getRelocationInfo() const;
 
   SectionKind getSectionKind(const DataLayout *DL) const;
index 118a87f241d69fbe68a652f015def3b2318f1fd0..b80db057d4b970253a755bc2af92c596b59c6834 100644 (file)
@@ -204,7 +204,7 @@ public:
   MachineFrameInfo *getFrameInfo() { return FrameInfo; }
   const MachineFrameInfo *getFrameInfo() const { return FrameInfo; }
 
-  /// getJumpTableInfo - Return the jump table info object for the current 
+  /// getJumpTableInfo - Return the jump table info object for the current
   /// function.  This object contains information about jump tables in the
   /// current function.  If the current function has no jump tables, this will
   /// return null.
index 5bc4dafabb383d12055ad7b2cf16ec2b7c0acb90..e02ce3b2141680ec1f835b008d457bd38ad9202d 100644 (file)
@@ -100,7 +100,7 @@ private:
 };
 typedef content_iterator<ExportEntry> export_iterator;
 
-/// MachORebaseEntry encapsulates the current state in the decompression of   
+/// MachORebaseEntry encapsulates the current state in the decompression of
 /// rebasing opcodes. This allows you to iterate through the compressed table of
 /// rebasing using:
 ///    for (const llvm::object::MachORebaseEntry &Entry : Obj->rebaseTable()) {