X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FIR%2FUse.cpp;h=cae845d99fe58fe3a943b4d38566f3339c7af805;hb=8545f7f946f98c47b6a539fb19595ac6072e6967;hp=60a0c5668890fc686c57a320a5ae12588f6b95dd;hpb=13f0d301e80d5bb43924d049ac7a3f853df20394;p=oota-llvm.git diff --git a/lib/IR/Use.cpp b/lib/IR/Use.cpp index 60a0c566889..cae845d99fe 100644 --- a/lib/IR/Use.cpp +++ b/lib/IR/Use.cpp @@ -27,14 +27,14 @@ void Use::swap(Use &RHS) { Val = RHS.Val; Val->addUse(*this); } else { - Val = 0; + Val = nullptr; } if (OldVal) { RHS.Val = OldVal; RHS.Val->addUse(RHS); } else { - RHS.Val = 0; + RHS.Val = nullptr; } } @@ -49,10 +49,10 @@ unsigned Use::getOperandNo() const { return this - getUser()->op_begin(); } -// Sets up the waymarking algoritm's tags for a series of Uses. See the +// Sets up the waymarking algorithm's tags for a series of Uses. See the // algorithm details here: // -// http://www.llvm.org/docs/ProgrammersManual.html#UserLayout +// http://www.llvm.org/docs/ProgrammersManual.html#the-waymarking-algorithm // Use *Use::initTags(Use *const Start, Use *Stop) { ptrdiff_t Done = 0;