diff options
-rw-r--r-- | include/clang/AST/Stmt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index 686bce9d25..1f58a978fd 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -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; |