1
0
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:
Simon Pilgrim 2019-11-04 15:30:18 +00:00
parent da638ff6f7
commit 7c495ec4d4

View File

@ -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 *,