mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-19 02:42:58 +00:00
Replace two manual loops with calls to CallSite::hasArguments (no functional changes).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51947 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9515a8f88a
commit
227c27dd06
@ -26,9 +26,7 @@ using namespace llvm;
|
||||
/// takes the address of the function.
|
||||
static bool isOnlyADirectCall(Function *F, CallSite CS) {
|
||||
if (!CS.getInstruction()) return false;
|
||||
for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); I != E; ++I)
|
||||
if (*I == F) return false;
|
||||
return true;
|
||||
return !CS.hasArgument(F);
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
@ -331,13 +331,11 @@ void DAE::SurveyFunction(Function &F) {
|
||||
}
|
||||
|
||||
// If the function is PASSED IN as an argument, its address has been taken
|
||||
for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
|
||||
AI != E; ++AI)
|
||||
if (AI->get() == &F) {
|
||||
FunctionIntrinsicallyLive = true;
|
||||
break;
|
||||
}
|
||||
if (FunctionIntrinsicallyLive) break;
|
||||
|
||||
if (CS.hasArgument(&F)) {
|
||||
FunctionIntrinsicallyLive = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (FunctionIntrinsicallyLive) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user