Home
last modified time | relevance | path

Searched refs:CondMet (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/contrib/llvm/include/llvm/MC/MCParser/
DAsmCond.h32 bool CondMet; variable
35 AsmCond() : TheCond(NoCond), CondMet(false), Ignore(false) {} in AsmCond()
/freebsd-9-stable/contrib/llvm/lib/MC/MCParser/
DAsmParser.cpp3594 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
3595 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
3617 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
3618 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
3647 TheCondState.CondMet = ExpectEqual == (Str1 == Str2); in parseDirectiveIfc()
3648 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfc()
3672 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined()); in parseDirectiveIfdef()
3674 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined()); in parseDirectiveIfdef()
3675 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfdef()
3693 if (LastIgnoreState || TheCondState.CondMet) { in parseDirectiveElseIf()
[all …]