Lines Matching defs:except
145 bool parseAtUnwindOrAtExcept(bool &unwind, bool &except);
707 return TokError("you must specify one or both of @unwind or @except");
709 bool unwind = false, except = false;
710 if (parseAtUnwindOrAtExcept(unwind, except))
714 if (parseAtUnwindOrAtExcept(unwind, except))
723 getStreamer().emitWinEHHandler(handler, unwind, except, Loc);
752 bool COFFAsmParser::parseAtUnwindOrAtExcept(bool &unwind, bool &except) {
759 return Error(startLoc, "expected @unwind or @except");
762 else if (identifier == "except")
763 except = true;
765 return Error(startLoc, "expected @unwind or @except");