blob: 3db32e35f680061a8c45628fcf04dfb03dc24977 [file] [log] [blame]
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0+
# Test for gcc '-fstack-usage' support
# Copyright (C) 2013, Masahiro Yamada <yamada.m@jp.panasonic.com>
#
TMP="$$"
cat <<END | $@ -Werror -fstack-usage -x c - -c -o $TMP >/dev/null 2>&1 \
&& echo "y"
int main(void)
{
return 0;
}
END
rm -f $TMP $TMP.su