reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

lib/AsmParser/LLParser.h
  592     bool ParseCall(Instruction *&Inst, PerFunctionState &PFS,

References

lib/AsmParser/LLParser.cpp
 5828   case lltok::kw_call:     return ParseCall(Inst, PFS, CallInst::TCK_None);
 5829   case lltok::kw_tail:     return ParseCall(Inst, PFS, CallInst::TCK_Tail);
 5830   case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
 5831   case lltok::kw_notail:   return ParseCall(Inst, PFS, CallInst::TCK_NoTail);