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

  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 128 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
129 const CallInst *isFreeCall(const Value *I, const TargetLibraryInfo *TLI);
131 static inline CallInst *isFreeCall(Value *I, const TargetLibraryInfo *TLI) {
132 return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 304 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
305 const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) {

Completed in 57 milliseconds