mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
replace a loop with a constant time check.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e8410abf1
commit
f1577014dd
@ -125,9 +125,8 @@ bool ArgPromotion::PromoteArguments(CallGraphNode *CGN) {
|
||||
|
||||
// Ensure that this call site is CALLING the function, not passing it as
|
||||
// an argument.
|
||||
for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
|
||||
AI != E; ++AI)
|
||||
if (*AI == F) return false; // Passing the function address in!
|
||||
if (UI.getOperandNo() != 0)
|
||||
return false;
|
||||
}
|
||||
|
||||
// Check to see which arguments are promotable. If an argument is not
|
||||
|
Loading…
Reference in New Issue
Block a user