LLVM 20.0.0git
|
AsmCond - Class to support conditional assembly. More...
#include "llvm/MC/MCParser/AsmCond.h"
Public Types | |
enum | ConditionalAssemblyType { NoCond , IfCond , ElseIfCond , ElseCond } |
Public Attributes | |
ConditionalAssemblyType | TheCond = NoCond |
bool | CondMet = false |
bool | Ignore = false |
AsmCond - Class to support conditional assembly.
The conditional assembly feature (.if, .else, .elseif and .endif) is implemented with AsmCond that tells us what we are in the middle of processing. Ignore can be either true or false. When true we are ignoring the block of code in the middle of a conditional.
ConditionalAssemblyType llvm::AsmCond::TheCond = NoCond |