forked from OSchip/llvm-project
Attempt to fix uninitialized SDAG persistent ids detected by MSan
llvm-svn: 253422
This commit is contained in:
parent
e8c455d90e
commit
3da7a5338e
|
@ -215,7 +215,7 @@ class SelectionDAG {
|
|||
/// Tracks dbg_value information through SDISel.
|
||||
SDDbgInfo *DbgInfo;
|
||||
|
||||
uint16_t NextPersistentId;
|
||||
uint16_t NextPersistentId = 0;
|
||||
|
||||
public:
|
||||
/// Clients of various APIs that cause global effects on
|
||||
|
|
Loading…
Reference in New Issue