]> granicus.if.org Git - clang/commitdiff
[ms-inline asm] Base class AsmStmt implements these.
authorChad Rosier <mcrosier@apple.com>
Mon, 27 Aug 2012 19:48:56 +0000 (19:48 +0000)
committerChad Rosier <mcrosier@apple.com>
Mon, 27 Aug 2012 19:48:56 +0000 (19:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162693 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Stmt.h

index 048f1ae3b8709cb9f24918ed0bb7fb982a5a3bf3..b327e36dce4c70ceb495a614cf3e0f5167bc8573 100644 (file)
@@ -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);