[cfe-commits] r39248 - in /cfe/cfe/trunk: Makefile include/clang/AST/Decl.h
sabre at cs.uiuc.edu
sabre at cs.uiuc.edu
Wed Jul 11 09:41:53 PDT 2007
Author: sabre
Date: Wed Jul 11 11:41:53 2007
New Revision: 39248
URL: http://llvm.org/viewvc/llvm-project?rev=39248&view=rev
Log:
Make the clean target tidier by cleaning the test directory.
Modified:
cfe/cfe/trunk/Makefile
cfe/cfe/trunk/include/clang/AST/Decl.h
Modified: cfe/cfe/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/Makefile?rev=39248&r1=39247&r2=39248&view=diff
==============================================================================
--- cfe/cfe/trunk/Makefile (original)
+++ cfe/cfe/trunk/Makefile Wed Jul 11 11:41:53 2007
@@ -5,3 +5,7 @@
test::
cd test; $(MAKE)
+
+clean::
+ @rm -rf build
+ @rm -rf `find test -name Output`
Modified: cfe/cfe/trunk/include/clang/AST/Decl.h
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/include/clang/AST/Decl.h?rev=39248&r1=39247&r2=39248&view=diff
==============================================================================
--- cfe/cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/cfe/trunk/include/clang/AST/Decl.h Wed Jul 11 11:41:53 2007
@@ -118,7 +118,7 @@
/// FunctionDecl - An instance of this class is created to represent a function
/// declaration or definition.
class FunctionDecl : public ObjectDecl {
- // Args etc.
+ // FIXME: Args etc.
Stmt *Body; // Null if a prototype.
/// DeclChain - Linked list of declarations that are defined inside this
More information about the cfe-commits
mailing list