summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/pr25632.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/other/pr25632.C')
-rw-r--r--gcc/testsuite/g++.dg/other/pr25632.C19
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/other/pr25632.C b/gcc/testsuite/g++.dg/other/pr25632.C
new file mode 100644
index 000000000..e66ae3b51
--- /dev/null
+++ b/gcc/testsuite/g++.dg/other/pr25632.C
@@ -0,0 +1,19 @@
+/* PR c++/25632 */
+
+/* { dg-do compile } */
+
+__extension__ typedef __INTPTR_TYPE__ intptr_t;
+
+struct sockaddr_un {
+ char sun_path[1];
+};
+const unsigned SI_SUN_HEAD_LEN = (intptr_t)(((struct sockaddr_un *)0)->sun_path);
+int SiGetPeerName ()
+{
+ return SI_SUN_HEAD_LEN;
+}
+int SiAccept ()
+{
+ return SI_SUN_HEAD_LEN;
+}
+