Home | History | Annotate | Download | only in MCParser

Lines Matching defs:except

121   bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
259 return TokError("you must specify one or both of @unwind or @except");
261 bool unwind = false, except = false;
262 if (ParseAtUnwindOrAtExcept(unwind, except))
266 if (ParseAtUnwindOrAtExcept(unwind, except))
275 getStreamer().EmitWin64EHHandler(handler, unwind, except);
418 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) {
425 return Error(startLoc, "expected @unwind or @except");
428 else if (identifier == "except")
429 except = true;
431 return Error(startLoc, "expected @unwind or @except");