mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-23 11:38:38 +00:00
Make helper static, so it can be inlined into its sole caller.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152515 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
309a2c4e3b
commit
4210b34e59
@ -272,9 +272,9 @@ static unsigned countCodeReductionForAllocaICmp(const CodeMetrics &Metrics,
|
|||||||
/// The reduction for this instruction is added to the SROAReduction output
|
/// The reduction for this instruction is added to the SROAReduction output
|
||||||
/// parameter. Returns false if this instruction is expected to defeat SROA in
|
/// parameter. Returns false if this instruction is expected to defeat SROA in
|
||||||
/// general.
|
/// general.
|
||||||
bool countCodeReductionForSROAInst(Instruction *I,
|
static bool countCodeReductionForSROAInst(Instruction *I,
|
||||||
SmallVectorImpl<Value *> &Worklist,
|
SmallVectorImpl<Value *> &Worklist,
|
||||||
unsigned &SROAReduction) {
|
unsigned &SROAReduction) {
|
||||||
if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
|
if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
|
||||||
if (!LI->isSimple())
|
if (!LI->isSimple())
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user