[C++] Use 'nullptr'. Transforms edition.
[oota-llvm.git] / include / llvm / Transforms / Utils / CodeExtractor.h
index 1122678035b595569748e26651b88a21c81ce6e1..f273e59934f8f6aa5e13a7abc4a4ea47e70125ea 100644 (file)
@@ -66,7 +66,7 @@ namespace llvm {
     /// dominates the rest, prepare a code extractor object for pulling this
     /// sequence out into its new function. When a DominatorTree is also given,
     /// extra checking and transformations are enabled.
-    CodeExtractor(ArrayRef<BasicBlock *> BBs, DominatorTree *DT = 0,
+    CodeExtractor(ArrayRef<BasicBlock *> BBs, DominatorTree *DT = nullptr,
                   bool AggregateArgs = false);
 
     /// \brief Create a code extractor for a loop body.