Home | History | Annotate | Download | only in MCParser

Lines Matching refs:AsmCond

26 #include "llvm/MC/MCParser/AsmCond.h"
130 AsmCond TheCondState;
131 std::vector<AsmCond> TheCondStack;
706 AsmCond StartingCondState = TheCondState;
4350 TheCondState.TheCond = AsmCond::IfCond;
4397 TheCondState.TheCond = AsmCond::IfCond;
4421 TheCondState.TheCond = AsmCond::IfCond;
4486 TheCondState.TheCond = AsmCond::IfCond;
4498 TheCondState.TheCond = AsmCond::IfCond;
4523 if (TheCondState.TheCond != AsmCond::IfCond &&
4524 TheCondState.TheCond != AsmCond::ElseIfCond)
4527 TheCondState.TheCond = AsmCond::ElseIfCond;
4559 if (TheCondState.TheCond != AsmCond::IfCond &&
4560 TheCondState.TheCond != AsmCond::ElseIfCond)
4563 TheCondState.TheCond = AsmCond::ElseCond;
4653 if ((TheCondState.TheCond == AsmCond::NoCond) || TheCondStack.empty())