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