forked from OSchip/llvm-project
[CodeGenPGO] Fix shadow variable warning. NFC.
This commit is contained in:
parent
736385c0b4
commit
dc8680eceb
|
@ -40,8 +40,8 @@ private:
|
|||
uint64_t CurrentRegionCount;
|
||||
|
||||
public:
|
||||
CodeGenPGO(CodeGenModule &CGM)
|
||||
: CGM(CGM), FuncNameVar(nullptr), NumValueSites({{0}}),
|
||||
CodeGenPGO(CodeGenModule &CGModule)
|
||||
: CGM(CGModule), FuncNameVar(nullptr), NumValueSites({{0}}),
|
||||
NumRegionCounters(0), FunctionHash(0), CurrentRegionCount(0) {}
|
||||
|
||||
/// Whether or not we have PGO region data for the current function. This is
|
||||
|
|
Loading…
Reference in New Issue