diff options
author | Xinliang David Li <davidxl@google.com> | 2015-12-01 19:47:32 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2015-12-01 19:47:32 +0000 |
commit | 0e6a36e17e07485ee511756e022263a59101c79a (patch) | |
tree | cb0dd8067cf2d3483c65acf08a09b80fa2c2a985 /llvm/lib/ProfileData/InstrProf.cpp | |
parent | 5fecd674628e2ef80e8ffe31c92664881e71e3aa (diff) | |
download | bcm5719-llvm-0e6a36e17e07485ee511756e022263a59101c79a.tar.gz bcm5719-llvm-0e6a36e17e07485ee511756e022263a59101c79a.zip |
Use nullptr (NFC)
llvm-svn: 254447
Diffstat (limited to 'llvm/lib/ProfileData/InstrProf.cpp')
-rw-r--r-- | llvm/lib/ProfileData/InstrProf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ProfileData/InstrProf.cpp b/llvm/lib/ProfileData/InstrProf.cpp index d08ec9d7317..530be8ac044 100644 --- a/llvm/lib/ProfileData/InstrProf.cpp +++ b/llvm/lib/ProfileData/InstrProf.cpp @@ -207,7 +207,7 @@ ValueProfData::serializeFrom(const InstrProfRecord &Record) { InstrProfRecordClosure.Record = &Record; std::unique_ptr<ValueProfData> VPD( - serializeValueProfDataFrom(&InstrProfRecordClosure, 0)); + serializeValueProfDataFrom(&InstrProfRecordClosure, nullptr)); return VPD; } |