[llvm] r333212 - [ThinLTO/CFI] Minor comment clarification
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Thu May 24 10:42:25 PDT 2018
Author: tejohnson
Date: Thu May 24 10:42:25 2018
New Revision: 333212
URL: http://llvm.org/viewvc/llvm-project?rev=333212&view=rev
Log:
[ThinLTO/CFI] Minor comment clarification
Summary: Suggested by Duncan on the review thread for D46699.
Reviewers: pcc
Subscribers: inglorion, dexonsmith, llvm-commits
Differential Revision: https://reviews.llvm.org/D47338
Modified:
llvm/trunk/include/llvm/IR/ModuleSummaryIndex.h
Modified: llvm/trunk/include/llvm/IR/ModuleSummaryIndex.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/ModuleSummaryIndex.h?rev=333212&r1=333211&r2=333212&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/ModuleSummaryIndex.h (original)
+++ llvm/trunk/include/llvm/IR/ModuleSummaryIndex.h Thu May 24 10:42:25 2018
@@ -472,7 +472,8 @@ private:
/// relatively uncommon we only allocate space for them if necessary.
struct TypeIdInfo {
/// List of type identifiers used by this function in llvm.type.test
- /// intrinsics other than by an llvm.assume intrinsic, represented as GUIDs.
+ /// intrinsics referenced by something other than an llvm.assume intrinsic,
+ /// represented as GUIDs.
std::vector<GlobalValue::GUID> TypeTests;
/// List of virtual calls made by this function using (respectively)
More information about the llvm-commits
mailing list