mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
AliasSetTracker - fix uninitialized variable warnings. NFCI.
This commit is contained in:
parent
da638ff6f7
commit
7c495ec4d4
@ -344,8 +344,8 @@ class AliasSetTracker {
|
||||
struct ASTCallbackVHDenseMapInfo : public DenseMapInfo<Value *> {};
|
||||
|
||||
AliasAnalysis &AA;
|
||||
MemorySSA *MSSA;
|
||||
Loop *L;
|
||||
MemorySSA *MSSA = nullptr;
|
||||
Loop *L = nullptr;
|
||||
ilist<AliasSet> AliasSets;
|
||||
|
||||
using PointerMapType = DenseMap<ASTCallbackVH, AliasSet::PointerRec *,
|
||||
|
Loading…
Reference in New Issue
Block a user