aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/IR/ValueHandleTest.cpp
AgeCommit message (Collapse)AuthorFilesLines
2014-06-08[C++11] Use 'nullptr'.Craig Topper1-16/+16
llvm-svn: 210442
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+1
This compiles with no changes to clang/lld/lldb with MSVC and includes overloads to various functions which are used by those projects and llvm which have OwningPtr's as parameters. This should allow out of tree projects some time to move. There are also no changes to libs/Target, which should help out of tree targets have time to move, if necessary. llvm-svn: 203083
2014-03-04[Modules] Move ValueHandle into the IR library where Value itself lives.Chandler Carruth1-0/+408
Move the test for this class into the IR unittests as well. This uncovers that ValueMap too is in the IR library. Ironically, the unittest for ValueMap is useless in the Support library (honestly, so was the ValueHandle test) and so it already lives in the IR unittests. Mmmm, tasty layering. llvm-svn: 202821