Revert "[Windows] Simplify assertion code. NFC."
[oota-llvm.git] / lib / Support / IntervalMap.cpp
index 4dfcc404ca42833f6c2b397c7626aebc368db9a8..e11a7f2eb843ee0e7a507148bf1cdb8c0c1e1578 100644 (file)
@@ -58,7 +58,7 @@ void Path::moveLeft(unsigned Level) {
     }
   } else if (height() < Level)
     // end() may have created a height=0 path.
-    path.resize(Level + 1, Entry(0, 0, 0));
+    path.resize(Level + 1, Entry(nullptr, 0, 0));
 
   // NR is the subtree containing our left sibling.
   --path[l].offset;