[LiveDebugValues] Temporarily initialize MLocTracker::CurBB

Looks like code assumes that it will be always set, but it's not true:
https://reviews.llvm.org/D150420. This is temporarily suppression to enabled
stricter msan on a bot.
This commit is contained in:
Vitaly Buka
2023-05-11 19:35:12 -07:00
parent 39b8af47fc
commit b135df0839

View File

@@ -656,7 +656,7 @@ public:
// If we discover a new machine location, assign it an mphi with this
// block number.
unsigned CurBB;
unsigned CurBB = 0; // FIXME: https://reviews.llvm.org/D150420
/// Cached local copy of the number of registers the target has.
unsigned NumRegs;