mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 21:18:19 +00:00
[C++] Use 'nullptr'. Transforms edition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207196 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -120,8 +120,8 @@ typedef DenseMap<BasicBlock *, SmallVector<BasicBlock *, 8>> BlockEdgeMap;
|
||||
class SampleFunctionProfile {
|
||||
public:
|
||||
SampleFunctionProfile()
|
||||
: TotalSamples(0), TotalHeadSamples(0), HeaderLineno(0), DT(0), PDT(0),
|
||||
LI(0), Ctx(0) {}
|
||||
: TotalSamples(0), TotalHeadSamples(0), HeaderLineno(0), DT(nullptr),
|
||||
PDT(nullptr), LI(nullptr), Ctx(nullptr) {}
|
||||
|
||||
unsigned getFunctionLoc(Function &F);
|
||||
bool emitAnnotations(Function &F, DominatorTree *DomTree,
|
||||
|
||||
Reference in New Issue
Block a user