Skip to content

Commit 136381d

Browse files
committed
check_external_calls.sh: Print number of calls in tested file.
Reviewer: Jeroen Ketema Signed-off-by: Jan Vesely <[email protected]> llvm-svn: 315192
1 parent 80bb52a commit 136381d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libclc/check_external_calls.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ TMP_FILE=$(mktemp)
2424

2525
# Check for calls. Calls to llvm intrinsics are OK
2626
$DIS < $FILE | grep ' call ' | grep -v '@llvm' > "$TMP_FILE"
27+
COUNT=$(wc -l < "$TMP_FILE")
2728

28-
if [ $(wc -l < "$TMP_FILE") -ne "0" ]; then
29-
echo "ERROR: unresolved calls detected"
29+
if [ "$COUNT" -ne "0" ]; then
30+
echo "ERROR: $COUNT unresolved calls detected in $FILE"
3031
cat $TMP_FILE
3132
ret=1
3233
else

0 commit comments

Comments
 (0)