mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
[Analysis] Remove isJoinDivergent (NFC)
The last use was removed on Sep 30, 2020 in commit 05ae04c396519cca9ef50d3b9cafb0cd9c87d1d7.
This commit is contained in:
parent
51dcfc6119
commit
54c34b405b
@ -112,13 +112,6 @@ private:
|
||||
bool isTemporalDivergent(const BasicBlock &ObservingBlock,
|
||||
const Value &Val) const;
|
||||
|
||||
/// \brief Whether \p Block is join divergent
|
||||
///
|
||||
/// (see markBlockJoinDivergent).
|
||||
bool isJoinDivergent(const BasicBlock &Block) const {
|
||||
return DivergentJoinBlocks.contains(&Block);
|
||||
}
|
||||
|
||||
private:
|
||||
const Function &F;
|
||||
// If regionLoop != nullptr, analysis is only performed within \p RegionLoop.
|
||||
@ -140,9 +133,6 @@ private:
|
||||
// Set of known-uniform values.
|
||||
DenseSet<const Value *> UniformOverrides;
|
||||
|
||||
// Blocks with joining divergent control from different predecessors.
|
||||
DenseSet<const BasicBlock *> DivergentJoinBlocks; // FIXME Deprecated
|
||||
|
||||
// Detected/marked divergent values.
|
||||
DenseSet<const Value *> DivergentValues;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user