forked from OSchip/llvm-project
[RS4GC] Use AssertingVH for RematerializedValueMapTy, NFCI
Reviewers: reames, swaroop.sridhar Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D13489 llvm-svn: 249620
This commit is contained in:
parent
0d0bcf7433
commit
40bdd041db
|
@ -159,7 +159,8 @@ struct GCPtrLivenessData {
|
|||
// types, then update all the second type to the first type
|
||||
typedef DenseMap<Value *, Value *> DefiningValueMapTy;
|
||||
typedef DenseSet<Value *> StatepointLiveSetTy;
|
||||
typedef DenseMap<Instruction *, Value *> RematerializedValueMapTy;
|
||||
typedef DenseMap<AssertingVH<Instruction>, AssertingVH<Value>>
|
||||
RematerializedValueMapTy;
|
||||
|
||||
struct PartiallyConstructedSafepointRecord {
|
||||
/// The set of values known to be live across this safepoint
|
||||
|
|
Loading…
Reference in New Issue