diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-09-20 07:22:23 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-09-20 07:22:23 +0000 |
commit | b27b78f6a4be0eb96b79c818490ca924d18d50b1 (patch) | |
tree | eb1205d944715420fb96ec4efe330d6774dec7ea /utils/countloc.sh | |
parent | 8141e371098c5d1b01e5e604e22bb2d58ae59402 (diff) |
Base the implementation on the llvmdo script so that we only have to
maintain the logic for "what counts as a source file" in one place.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/countloc.sh')
-rwxr-xr-x | utils/countloc.sh | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/utils/countloc.sh b/utils/countloc.sh index 75a6154971..cc67afe033 100755 --- a/utils/countloc.sh +++ b/utils/countloc.sh @@ -15,22 +15,10 @@ # The script takes no arguments but does expect to be run from the top llvm # source directory. # -TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'` +TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'` if test -d "$TOPDIR" ; then cd $TOPDIR - find include lib tools utils examples -type f -name '*.[cdhyltp]*' \ - \! -name '*~' \ - \! -name '#*' \ - \! -name '*.ll' \ - \! -name '*.lo' \ - \! -name '*.d' \ - \! -name '*.dir' \ - \! -name 'Sparc.burm.c' \ - \! -name 'llvmAsmParser.cpp' \ - \! -name 'llvmAsmParser.h' \ - \! -name 'FileParser.cpp' \ - \! -name 'FileParser.h' \ - -exec wc -l {} \; | awk '\ + ./utils/llvmdo -dirs "include lib tools test utils examples" wc -l | awk '\ BEGIN { loc=0; } \ { loc += $1; } \ END { print loc; }' |