From: NAKAMURA Takumi Date: Mon, 5 Oct 2015 04:43:57 +0000 (+0000) Subject: Prune trailing whitespaces in comment lines. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=b2700222ecba0d186f8db173dbbdba6f2330eab6 Prune trailing whitespaces in comment lines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249285 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/FunctionLoweringInfo.h b/include/llvm/CodeGen/FunctionLoweringInfo.h index 3c834931566..46bfd1e1c94 100644 --- a/include/llvm/CodeGen/FunctionLoweringInfo.h +++ b/include/llvm/CodeGen/FunctionLoweringInfo.h @@ -99,7 +99,7 @@ public: /// RegFixups - Registers which need to be replaced after isel is done. DenseMap 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. diff --git a/include/llvm/CodeGen/GCMetadata.h b/include/llvm/CodeGen/GCMetadata.h index 4b820cddb62..163117b0781 100644 --- a/include/llvm/CodeGen/GCMetadata.h +++ b/include/llvm/CodeGen/GCMetadata.h @@ -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 diff --git a/include/llvm/CodeGen/MachineConstantPool.h b/include/llvm/CodeGen/MachineConstantPool.h index 4a067f9317f..d7db50c1c30 100644 --- a/include/llvm/CodeGen/MachineConstantPool.h +++ b/include/llvm/CodeGen/MachineConstantPool.h @@ -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; diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index 118a87f241d..b80db057d4b 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -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. diff --git a/include/llvm/Object/MachO.h b/include/llvm/Object/MachO.h index 5bc4dafabb3..e02ce3b2141 100644 --- a/include/llvm/Object/MachO.h +++ b/include/llvm/Object/MachO.h @@ -100,7 +100,7 @@ private: }; typedef content_iterator 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()) {