mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Use the new -code-only option to llvmdo so that we only count things that
are considered to be code. This will give a drop in the LOC count on the nightly testers, but it is more accurate than previous estimates. llvm-svn: 29653
This commit is contained in:
parent
08a7d6413f
commit
283f511a60
@ -22,7 +22,7 @@
|
|||||||
TOPDIR=`llvm-config --src-root`
|
TOPDIR=`llvm-config --src-root`
|
||||||
if test -d "$TOPDIR" ; then
|
if test -d "$TOPDIR" ; then
|
||||||
cd $TOPDIR
|
cd $TOPDIR
|
||||||
./utils/llvmdo -dirs "include lib tools test utils examples" wc -l | awk '\
|
./utils/llvmdo -dirs "include lib tools test utils examples" -code-only wc -l | awk '\
|
||||||
BEGIN { loc=0; } \
|
BEGIN { loc=0; } \
|
||||||
{ loc += $1; } \
|
{ loc += $1; } \
|
||||||
END { print loc; }'
|
END { print loc; }'
|
||||||
|
Loading…
Reference in New Issue
Block a user