Minor comment cleanup [NFC]

llvm-svn: 266997
This commit is contained in:
Philip Reames 2016-04-21 16:15:19 +00:00
parent 7e0cfdf745
commit 9b9b60ee15

View File

@ -53,8 +53,8 @@ bool isGCResult(ImmutableCallSite CS);
/// functionality for Statepoint and ImmutableStatepoint. It is /// functionality for Statepoint and ImmutableStatepoint. It is
/// templatized to allow easily specializing of const and non-const /// templatized to allow easily specializing of const and non-const
/// concrete subtypes. This is structured analogous to CallSite /// concrete subtypes. This is structured analogous to CallSite
/// rather than the IntrinsicInst.h helpers since we want to support /// rather than the IntrinsicInst.h helpers since we need to support
/// invokable statepoints in the near future. /// invokable statepoints.
template <typename FunTy, typename InstructionTy, typename ValueTy, template <typename FunTy, typename InstructionTy, typename ValueTy,
typename CallSiteTy> typename CallSiteTy>
class StatepointBase { class StatepointBase {
@ -348,7 +348,7 @@ public:
} }
}; };
/// This represents the gc.relocate intrinsic. /// Represents calls to the gc.relocate intrinsic.
class GCRelocateInst : public GCProjectionInst { class GCRelocateInst : public GCProjectionInst {
public: public:
static inline bool classof(const IntrinsicInst *I) { 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 { class GCResultInst : public GCProjectionInst {
public: public:
static inline bool classof(const IntrinsicInst *I) { static inline bool classof(const IntrinsicInst *I) {