Searched refs:ParseCall (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 482 bool ParseCall(Instruction *&I, PerFunctionState &PFS,
|
D | LLParser.cpp | 4812 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None); in ParseInstruction() 4813 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail); in ParseInstruction() 4814 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail); in ParseInstruction() 4815 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail); in ParseInstruction() 5620 bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS, in ParseCall() function in LLParser
|