Home | History | Annotate | Download | only in MCParser

Lines Matching defs:except

155   bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
660 return TokError("you must specify one or both of @unwind or @except");
662 bool unwind = false, except = false;
663 if (ParseAtUnwindOrAtExcept(unwind, except))
667 if (ParseAtUnwindOrAtExcept(unwind, except))
676 getStreamer().EmitWinEHHandler(handler, unwind, except, Loc);
803 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
810 return Error(startLoc, "expected @unwind or @except");
813 else if (identifier == "except")
814 except = true;
816 return Error(startLoc, "expected @unwind or @except");