aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/pr43987.c
diff options
context:
space:
mode:
Diffstat (limited to 'SingleSource/Regression/C/gcc-c-torture/execute/pr43987.c')
-rw-r--r--SingleSource/Regression/C/gcc-c-torture/execute/pr43987.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/SingleSource/Regression/C/gcc-c-torture/execute/pr43987.c b/SingleSource/Regression/C/gcc-c-torture/execute/pr43987.c
new file mode 100644
index 00000000..ee41bdf2
--- /dev/null
+++ b/SingleSource/Regression/C/gcc-c-torture/execute/pr43987.c
@@ -0,0 +1,20 @@
+char B[256 * sizeof(void *)];
+typedef void *FILE;
+typedef struct globals {
+ int c;
+ FILE *l;
+} __attribute__((may_alias)) T;
+void add_input_file(FILE *file)
+{
+ (*(T*)&B).l[0] = file;
+}
+extern void abort (void);
+int main()
+{
+ FILE x;
+ (*(T*)&B).l = &x;
+ add_input_file ((void *)-1);
+ if ((*(T*)&B).l[0] != (void *)-1)
+ abort ();
+ return 0;
+}