aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pointer-arith-6.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.dg/pointer-arith-6.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.dg/pointer-arith-6.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.dg/pointer-arith-6.c b/gcc-4.9/gcc/testsuite/gcc.dg/pointer-arith-6.c
new file mode 100644
index 000000000..cf5f08b3e
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.dg/pointer-arith-6.c
@@ -0,0 +1,17 @@
+/* Test diagnostics for sizeof on void and function types. Test with
+ -Wpointer-arith. */
+/* Origin: Joseph Myers <joseph@codesourcery.com> */
+/* { dg-do compile } */
+/* { dg-options "-Wpointer-arith" } */
+
+extern const void v;
+void f(void);
+
+void
+g (void)
+{
+ sizeof (v); /* { dg-warning "invalid application of 'sizeof' to a void type" } */
+ sizeof (void); /* { dg-warning "invalid application of 'sizeof' to a void type" } */
+ sizeof (f); /* { dg-warning "invalid application of 'sizeof' to a function type" } */
+ sizeof (void (void)); /* { dg-warning "invalid application of 'sizeof' to a function type" } */
+}