LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Types | Public Member Functions | Public Attributes | List of all members
llvm::AsmCond Class Reference

#include <AsmCond.h>

Collaboration diagram for llvm::AsmCond:
Collaboration graph
[legend]

Public Types

enum  ConditionalAssemblyType { NoCond, IfCond, ElseIfCond, ElseCond }
 

Public Member Functions

 AsmCond ()
 

Public Attributes

ConditionalAssemblyType TheCond
 
bool CondMet
 
bool Ignore
 

Detailed Description

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.

Definition at line 22 of file AsmCond.h.

Member Enumeration Documentation

Enumerator
NoCond 
IfCond 
ElseIfCond 
ElseCond 

Definition at line 24 of file AsmCond.h.

Constructor & Destructor Documentation

llvm::AsmCond::AsmCond ( )
inline

Definition at line 35 of file AsmCond.h.

Member Data Documentation

bool llvm::AsmCond::CondMet

Definition at line 32 of file AsmCond.h.

bool llvm::AsmCond::Ignore

Definition at line 33 of file AsmCond.h.

ConditionalAssemblyType llvm::AsmCond::TheCond

Definition at line 31 of file AsmCond.h.


The documentation for this class was generated from the following file: