Lines Matching defs:unwind
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");
760 if (identifier == "unwind")
761 unwind = true;
765 return Error(startLoc, "expected @unwind or @except");