aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/Stmt.h
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-08-27 19:48:56 +0000
committerChad Rosier <mcrosier@apple.com>2012-08-27 19:48:56 +0000
commitbbdfe24a19833e4deabc73e50a5c639fefb60a07 (patch)
tree1565bc3982e206c0621750dea4e0b9e888a61a3f /include/clang/AST/Stmt.h
parent066ef86b435a5c567778c25fc201a2831049ad4b (diff)
downloadclang-bbdfe24a19833e4deabc73e50a5c639fefb60a07.tar.gz
[ms-inline asm] Base class AsmStmt implements these.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/Stmt.h')
-rw-r--r--include/clang/AST/Stmt.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h
index 048f1ae3b8..b327e36dce 100644
--- a/include/clang/AST/Stmt.h
+++ b/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);