From 833b2eb738a2a7a77b5c758555694a0d6bc10e1b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Oct 2007 23:18:19 +0000 Subject: [PATCH] remove dead method with bogus comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42937 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/Expr.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 650fce34e8..4eb96ad89f 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -383,11 +383,6 @@ public: bool isSizeOfAlignOfOp() const { return Opc == SizeOf || Opc == AlignOf; } static bool isArithmeticOp(Opcode Op) { return Op >= Plus && Op <= LNot; } - /// getDecl - a recursive routine that derives the base decl for an - /// expression. For example, it will return the declaration for "s" from - /// the following complex expression "s.zz[2].bb.vv". - static bool isAddressable(Expr *e); - /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it /// corresponds to, e.g. "sizeof" or "[pre]++" static const char *getOpcodeStr(Opcode Op);