aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2011-08-29 16:28:28 +0300
committerPekka Enberg <penberg@kernel.org>2011-08-29 16:28:28 +0300
commitd2e0456f710a4b834afdd0db7e871befebf812b4 (patch)
tree363ffd9c39593fd51052ba0520e432092851ecba
parent34c6f2fe2aeb35528be57aa6aab16d9ce144a099 (diff)
downloadsparse-d2e0456f710a4b834afdd0db7e871befebf812b4.tar.gz
sparse, llvm: Warn the user when we fall back to GCC
Make sure the user knows when we're using GCC instead of sparse-llvm. Signed-off-by: Pekka Enberg <penberg@kernel.org>
-rwxr-xr-xsparsec1
1 files changed, 1 insertions, 0 deletions
diff --git a/sparsec b/sparsec
index 27eb6223..26062e1e 100755
--- a/sparsec
+++ b/sparsec
@@ -24,6 +24,7 @@ while [ $# -gt 0 ]; do
done
if [ $use_gcc -eq 1 ]; then
+ echo "Unsupported options, falling back to GCC..."
gcc $ASOPTS $SPARSEOPTS
else