diff options
Diffstat (limited to 'include/clang/AST/Stmt.h')
-rw-r--r-- | include/clang/AST/Stmt.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index a2dda2a959..cc87867f1f 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -1261,7 +1261,6 @@ public: return Constraints[i + NumOutputs]; } - Expr *getInputExpr(unsigned i); const Expr *getInputExpr(unsigned i) const { @@ -1283,8 +1282,6 @@ public: /// This returns -1 if the operand name is invalid. int getNamedOperand(const std::string &SymbolicName) const; - - unsigned getNumClobbers() const { return Clobbers.size(); } StringLiteral *getClobber(unsigned i) { return Clobbers[i]; } const StringLiteral *getClobber(unsigned i) const { return Clobbers[i]; } @@ -1336,16 +1333,6 @@ public: return Exprs.data() + NumOutputs; } - // Input name iterator. - - const std::string *begin_output_names() const { - return &Names[0]; - } - - const std::string *end_output_names() const { - return &Names[0] + NumOutputs; - } - // Child iterators virtual child_iterator child_begin(); |