[cfe-commits] r162693 - /cfe/trunk/include/clang/AST/Stmt.h
Chad Rosier
mcrosier at apple.com
Mon Aug 27 12:48:56 PDT 2012
Author: mcrosier
Date: Mon Aug 27 14:48:56 2012
New Revision: 162693
URL: http://llvm.org/viewvc/llvm-project?rev=162693&view=rev
Log:
[ms-inline asm] Base class AsmStmt implements these.
Modified:
cfe/trunk/include/clang/AST/Stmt.h
Modified: cfe/trunk/include/clang/AST/Stmt.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Stmt.h?rev=162693&r1=162692&r2=162693&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Stmt.h (original)
+++ cfe/trunk/include/clang/AST/Stmt.h Mon Aug 27 14:48:56 2012
@@ -1553,19 +1553,6 @@
//===--- 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 @@
//===--- 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);
More information about the cfe-commits
mailing list