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 125 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
126 const CallInst *isFreeCall(const Value *I, const TargetLibraryInfo *TLI);
128 static inline CallInst *isFreeCall(Value *I, const TargetLibraryInfo *TLI) {
129 return const_cast<CallInst*>(isFreeCall((const Value*)I, TLI));
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 302 /// isFreeCall - Returns non-null if the value is a call to the builtin free()
303 const CallInst *llvm::isFreeCall(const Value *I, const TargetLibraryInfo *TLI) {

Completed in 503 milliseconds