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

  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 589 const Instruction *TheCall = CS.getInstruction();
590 if (!TheCall) { // Not a direct call site?
603 for (const Use &U : TheCall->uses()) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 73 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) {
74 if (checkArgCount(S, TheCall, 2))
78 Expr *ValArg = TheCall->getArg(0);
87 Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts();
95 TheCall->setType(Ty);
101 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) {
102 if (checkArgCount(S, TheCall, 1))
105 ExprResult Arg(TheCall->getArg(0));
106 QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getLocStart());
110 TheCall->setArg(0, Arg.get())
    [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]

Completed in 208 milliseconds