Remove uses of the redundant ".reset(nullptr)" of unique_ptr, in favor of ".reset()"
authorDavid Blaikie <dblaikie@gmail.com>
Sat, 19 Jul 2014 01:05:11 +0000 (01:05 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Sat, 19 Jul 2014 01:05:11 +0000 (01:05 +0000)
commitec31a302b7ae0e3f999be3bac28d55f52c6e2393
treec9adb0c609240aacb10a769663a50fbe1cc665c7
parente8cfb5988ff42f7c03f1f722b8a8d018e978bcd0
Remove uses of the redundant ".reset(nullptr)" of unique_ptr, in favor of ".reset()"

It's also possible to just write "= nullptr", but there's some question
of whether that's as readable, so I leave it up to authors to pick which
they prefer for now. If we want to discuss standardizing on one or the
other, we can do that at some point in the future.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213438 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Analysis/IPA/CallGraph.cpp
lib/CodeGen/RegAllocBasic.cpp
lib/CodeGen/RegAllocGreedy.cpp
lib/Support/FileOutputBuffer.cpp
utils/TableGen/DAGISelMatcherOpt.cpp