Lines Matching defs:except
141 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
673 return TokError("you must specify one or both of @unwind or @except");
675 bool unwind = false, except = false;
676 if (ParseAtUnwindOrAtExcept(unwind, except))
680 if (ParseAtUnwindOrAtExcept(unwind, except))
689 getStreamer().emitWinEHHandler(handler, unwind, except, Loc);
718 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
725 return Error(startLoc, "expected @unwind or @except");
728 else if (identifier == "except")
729 except = true;
731 return Error(startLoc, "expected @unwind or @except");