[llvm-commits] CVS: llvm/utils/llvmgrep getsrcs.sh

Chris Lattner lattner at cs.uiuc.edu
Sun Aug 15 15:54:42 PDT 2004



Changes in directory llvm/utils:

llvmgrep updated: 1.2 -> 1.3
getsrcs.sh updated: 1.17 -> 1.18
---
Log message:

Include .td and .txt files in the greps.  This will allow me to find symbols in
them, and also count them in the LOC of LLVM for the nightly tester.


---
Diffs of the changes:  (+2 -2)

Index: llvm/utils/llvmgrep
diff -u llvm/utils/llvmgrep:1.2 llvm/utils/llvmgrep:1.3
--- llvm/utils/llvmgrep:1.2	Wed Jul  7 16:19:01 2004
+++ llvm/utils/llvmgrep	Sun Aug 15 17:54:31 2004
@@ -7,7 +7,7 @@
   cd $TOPDIR
   find docs include lib tools utils projects -type f \
       \( -path '*/doxygen/*' -o -path '*/Burg/*' \) -prune -o \
-      -name '*.[cdhyl]*' \
+      -name '*.[cdhylt]*' \
       \! -name '*~' \
       \! -name '#*' \
       \! -name '*.ll' \


Index: llvm/utils/getsrcs.sh
diff -u llvm/utils/getsrcs.sh:1.17 llvm/utils/getsrcs.sh:1.18
--- llvm/utils/getsrcs.sh:1.17	Thu May 27 12:58:45 2004
+++ llvm/utils/getsrcs.sh	Sun Aug 15 17:54:31 2004
@@ -1,7 +1,7 @@
 #!/bin/sh
 # This is useful because it prints out all of the source files.  Useful for
 # greps.
-find docs include lib tools utils projects -name \*.\[cdhyl\]\* | grep -v Lexer.cpp | \
+find docs include lib tools utils projects -name \*.\[cdhylt\]\* | grep -v Lexer.cpp | \
        grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | \
        grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' |\
        grep -v '\.dir$' | grep -v '\.la$' | \






More information about the llvm-commits mailing list