aboutsummaryrefslogtreecommitdiff
path: root/tcctest.c
diff options
context:
space:
mode:
authorbellard <bellard>2003-06-02 20:31:46 +0000
committerbellard <bellard>2003-06-02 20:31:46 +0000
commit277e01cd643af71bd6e962f303747f7857ca23c1 (patch)
treedce6b9a764aff7941b21c830698b3fbf3dafbd1c /tcctest.c
parent9d95be78c8c5b43694397290525fb9cb689ecd53 (diff)
downloadtinycc-277e01cd643af71bd6e962f303747f7857ca23c1.tar.gz
tinycc-277e01cd643af71bd6e962f303747f7857ca23c1.tar.bz2
const warning test
Diffstat (limited to 'tcctest.c')
-rw-r--r--tcctest.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/tcctest.c b/tcctest.c
index 494b4db..2b75916 100644
--- a/tcctest.c
+++ b/tcctest.c
@@ -1943,3 +1943,13 @@ void builtin_test(void)
printf("res = %d\n", __builtin_constant_p(&constant_p_var));
printf("res = %d\n", __builtin_constant_p(constant_p_var));
}
+
+
+void const_func(const int a)
+{
+}
+
+void const_warn_test(void)
+{
+ const_func(1);
+}