diff options
| author | Craig Topper <craig.topper@gmail.com> | 2014-06-08 22:29:17 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2014-06-08 22:29:17 +0000 |
| commit | 66f09ad0417c0e9f0c959023c1cdfcf2d881ad2e (patch) | |
| tree | b9db3c4a6ee223002b945659169ab39cdd9fd80d /llvm/unittests/IR/UserTest.cpp | |
| parent | 41181d140c99913f8c8d73791dd4babfcba8a73d (diff) | |
| download | llvm-66f09ad0417c0e9f0c959023c1cdfcf2d881ad2e.zip llvm-66f09ad0417c0e9f0c959023c1cdfcf2d881ad2e.tar.gz llvm-66f09ad0417c0e9f0c959023c1cdfcf2d881ad2e.tar.bz2 | |
[C++11] Use 'nullptr'.
llvm-svn: 210442
Diffstat (limited to 'llvm/unittests/IR/UserTest.cpp')
| -rw-r--r-- | llvm/unittests/IR/UserTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/IR/UserTest.cpp b/llvm/unittests/IR/UserTest.cpp index 9c0e7b2..eb07e82 100644 --- a/llvm/unittests/IR/UserTest.cpp +++ b/llvm/unittests/IR/UserTest.cpp @@ -65,7 +65,7 @@ TEST(UserTest, ValueOpIteration) { " ret void\n" "}\n"; SMDiagnostic Err; - Module *M = ParseAssemblyString(ModuleString, NULL, Err, C); + Module *M = ParseAssemblyString(ModuleString, nullptr, Err, C); Function *F = M->getFunction("f"); BasicBlock &ExitBB = F->back(); |
