[llvm] r266997 - Minor comment cleanup [NFC]

Philip Reames via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 21 09:15:19 PDT 2016


Author: reames
Date: Thu Apr 21 11:15:19 2016
New Revision: 266997

URL: http://llvm.org/viewvc/llvm-project?rev=266997&view=rev
Log:
Minor comment cleanup [NFC]


Modified:
    llvm/trunk/include/llvm/IR/Statepoint.h

Modified: llvm/trunk/include/llvm/IR/Statepoint.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Statepoint.h?rev=266997&r1=266996&r2=266997&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Statepoint.h (original)
+++ llvm/trunk/include/llvm/IR/Statepoint.h Thu Apr 21 11:15:19 2016
@@ -53,8 +53,8 @@ bool isGCResult(ImmutableCallSite CS);
 /// functionality for Statepoint and ImmutableStatepoint.  It is
 /// templatized to allow easily specializing of const and non-const
 /// concrete subtypes.  This is structured analogous to CallSite
-/// rather than the IntrinsicInst.h helpers since we want to support
-/// invokable statepoints in the near future.
+/// rather than the IntrinsicInst.h helpers since we need to support
+/// invokable statepoints.
 template <typename FunTy, typename InstructionTy, typename ValueTy,
           typename CallSiteTy>
 class StatepointBase {
@@ -348,7 +348,7 @@ public:
   }
 };
 
-/// This represents the gc.relocate intrinsic.
+/// Represents calls to the gc.relocate intrinsic.
 class GCRelocateInst : public GCProjectionInst {
 public:
   static inline bool classof(const IntrinsicInst *I) {
@@ -382,7 +382,7 @@ public:
   }
 };
 
-/// This represents the gc.result intrinsic.
+/// Represents calls to the gc.result intrinsic.
 class GCResultInst : public GCProjectionInst {
 public:
   static inline bool classof(const IntrinsicInst *I) {




More information about the llvm-commits mailing list