mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
Remove unused Debugging variable.
This commit is contained in:
parent
57f831d2cb
commit
00fc32f855
@ -138,7 +138,6 @@ private:
|
|||||||
const InlineParams Params;
|
const InlineParams Params;
|
||||||
const InliningAdvisorMode Mode;
|
const InliningAdvisorMode Mode;
|
||||||
const unsigned MaxDevirtIterations;
|
const unsigned MaxDevirtIterations;
|
||||||
const bool Debugging;
|
|
||||||
CGSCCPassManager PM;
|
CGSCCPassManager PM;
|
||||||
ModulePassManager MPM;
|
ModulePassManager MPM;
|
||||||
};
|
};
|
||||||
|
@ -1041,7 +1041,7 @@ ModuleInlinerWrapperPass::ModuleInlinerWrapperPass(InlineParams Params,
|
|||||||
InliningAdvisorMode Mode,
|
InliningAdvisorMode Mode,
|
||||||
unsigned MaxDevirtIterations)
|
unsigned MaxDevirtIterations)
|
||||||
: Params(Params), Mode(Mode), MaxDevirtIterations(MaxDevirtIterations),
|
: Params(Params), Mode(Mode), MaxDevirtIterations(MaxDevirtIterations),
|
||||||
Debugging(Debugging), PM(Debugging), MPM(Debugging) {
|
PM(Debugging), MPM(Debugging) {
|
||||||
// Run the inliner first. The theory is that we are walking bottom-up and so
|
// Run the inliner first. The theory is that we are walking bottom-up and so
|
||||||
// the callees have already been fully optimized, and we want to inline them
|
// the callees have already been fully optimized, and we want to inline them
|
||||||
// into the callers so that our optimizations can reflect that.
|
// into the callers so that our optimizations can reflect that.
|
||||||
|
Loading…
Reference in New Issue
Block a user