[ms-inline asm] Add a few comments.

llvm-svn: 162699
This commit is contained in:
Chad Rosier 2012-08-27 21:14:01 +00:00
parent 7989f834c7
commit c4ee7d1add
1 changed files with 5 additions and 0 deletions

View File

@ -1368,7 +1368,12 @@ public:
class AsmStmt : public Stmt {
protected:
SourceLocation AsmLoc;
/// \brief True if the assembly statement does not have any input or output
/// operands.
bool IsSimple;
/// \brief If true, treat this inline assembly as having side effects.
/// This assembly statement should not be optimized, deleted or moved.
bool IsVolatile;
unsigned NumOutputs;