diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-27 19:48:56 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-27 19:48:56 +0000 |
commit | 1c17844c8cac2cb866ae78d625b17684fa2fa3c9 (patch) | |
tree | 31ec1b671c84fbaad9bcf8ff9b0757a6f6e902c1 /clang | |
parent | fe3352e0bcc86637c7b7bd85ed387344a5ff8a41 (diff) | |
download | bcm5719-llvm-1c17844c8cac2cb866ae78d625b17684fa2fa3c9.tar.gz bcm5719-llvm-1c17844c8cac2cb866ae78d625b17684fa2fa3c9.zip |
[ms-inline asm] Base class AsmStmt implements these.
llvm-svn: 162693
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/AST/Stmt.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/clang/include/clang/AST/Stmt.h b/clang/include/clang/AST/Stmt.h index 048f1ae3b87..b327e36dce4 100644 --- a/clang/include/clang/AST/Stmt.h +++ b/clang/include/clang/AST/Stmt.h @@ -1553,19 +1553,6 @@ public: //===--- Input operands ---===// - unsigned getNumInputs() const { return NumInputs; } - - IdentifierInfo *getInputIdentifier(unsigned i) const { - return Names[i + NumOutputs]; - } - - StringRef getInputName(unsigned i) const { - if (IdentifierInfo *II = getInputIdentifier(i)) - return II->getName(); - - return StringRef(); - } - /// getInputConstraint - Return the specified input constraint. Unlike output /// constraints, these can be empty. StringRef getInputConstraint(unsigned i) const; @@ -1708,19 +1695,6 @@ public: //===--- Input operands ---===// - unsigned getNumInputs() const { return NumInputs; } - - IdentifierInfo *getInputIdentifier(unsigned i) const { - return Names[i + NumOutputs]; - } - - StringRef getInputName(unsigned i) const { - if (IdentifierInfo *II = getInputIdentifier(i)) - return II->getName(); - - return StringRef(); - } - Expr *getInputExpr(unsigned i); void setInputExpr(unsigned i, Expr *E); |