HomeSort by relevance Sort by last modified time
    Searched defs:hasCalls (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 45 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
56 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
66 CodeInfo->ContainsCalls |= hasCalls;
312 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
345 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
405 CodeInfo->ContainsCalls |= hasCalls;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 183 /// HasCalls - Set to true if this function has any function calls.
184 bool HasCalls;
244 HasCalls = false;
464 /// hasCalls - Return true if the current function has any function calls.
465 bool hasCalls() const { return HasCalls; }
466 void setHasCalls(bool V) { HasCalls = V; }

Completed in 813 milliseconds