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

Chris Lattner lattner at cs.uiuc.edu
Tue Aug 12 00:12:00 PDT 2003


Changes in directory llvm/utils:

getsrcs.sh updated: 1.8 -> 1.9

---
Log message:

Make LOC count more accurate by not including the tablegen lexer/parser, any .inc files, which are generated by tablegen, nor .lo files which sometimes get picked up from libtool


---
Diffs of the changes:

Index: llvm/utils/getsrcs.sh
diff -u llvm/utils/getsrcs.sh:1.8 llvm/utils/getsrcs.sh:1.9
--- llvm/utils/getsrcs.sh:1.8	Wed Dec 11 21:44:42 2002
+++ llvm/utils/getsrcs.sh	Tue Aug 12 00:11:12 2003
@@ -1,5 +1,10 @@
 #!/bin/sh
 # This is useful because it prints out all of the source files.  Useful for
 # greps.
-find www include lib tools utils -name \*.\[cdhyl\]\* | 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 www/docs/doxygen | grep -v include/boost | grep -v /Burg/
+find www include lib tools utils -name \*.\[cdhyl\]\* | 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 www/docs/doxygen | grep -v include/boost | \
+       grep -v /Burg/ | grep -v '\.lo' | grep -v '\.inc$' | \
+       grep -v TableGen/FileParser.cpp | grep -v TableGen/FileParser.h
 





More information about the llvm-commits mailing list