]> granicus.if.org Git - clang/commitdiff
Remove a now out of date and out of place comment about predefined exprs from the...
authorSam Weinig <sam.weinig@gmail.com>
Sun, 6 Dec 2009 23:57:56 +0000 (23:57 +0000)
committerSam Weinig <sam.weinig@gmail.com>
Sun, 6 Dec 2009 23:57:56 +0000 (23:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90726 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Expr.h

index f41f8cf65c67ebe190d97792f6624ad9baedb498..220ae137c7cfcf331f71a8d09ab752d61ea5d13a 100644 (file)
@@ -686,11 +686,6 @@ public:
   SourceLocation getLocation() const { return Loc; }
   void setLocation(SourceLocation L) { Loc = L; }
 
-  // FIXME: The logic for computing the value of a predefined expr should go
-  // into a method here that takes the inner-most code decl (a block, function
-  // or objc method) that the expr lives in.  This would allow sema and codegen
-  // to be consistent for things like sizeof(__func__) etc.
-
   virtual SourceRange getSourceRange() const { return SourceRange(Loc); }
 
   static bool classof(const Stmt *T) {