mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
6a1e0e6c7b
them, and also count them in the LOC of LLVM for the nightly tester. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15786 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
723 B
Bash
Executable File
25 lines
723 B
Bash
Executable File
#!/bin/sh
|
|
# This is useful because it prints out all of the source files. Useful for
|
|
# greps.
|
|
PATTERN="$*"
|
|
TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'`
|
|
if test -d "$TOPDIR" ; then
|
|
cd $TOPDIR
|
|
find docs include lib tools utils projects -type f \
|
|
\( -path '*/doxygen/*' -o -path '*/Burg/*' \) -prune -o \
|
|
-name '*.[cdhylt]*' \
|
|
\! -name '*~' \
|
|
\! -name '#*' \
|
|
\! -name '*.ll' \
|
|
\! -name '*.d' \
|
|
\! -name '*.dir' \
|
|
\! -name 'Sparc.burm.c' \
|
|
\! -name 'llvmAsmParser.cpp' \
|
|
\! -name 'llvmAsmParser.h' \
|
|
\! -name 'FileParser.cpp' \
|
|
\! -name 'FileParser.h' \
|
|
-exec egrep -H -n "$PATTERN" {} \;
|
|
else
|
|
echo "Can't find LLVM top directory in $TOPDIR"
|
|
fi
|