aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/expand/constant-init-array.c
diff options
context:
space:
mode:
Diffstat (limited to 'validation/expand/constant-init-array.c')
-rw-r--r--validation/expand/constant-init-array.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/validation/expand/constant-init-array.c b/validation/expand/constant-init-array.c
new file mode 100644
index 00000000..94949be5
--- /dev/null
+++ b/validation/expand/constant-init-array.c
@@ -0,0 +1,15 @@
+int test_array(int i)
+{
+ static const int a[3] = { 1, 2, 3, };
+
+ return a[1];
+}
+
+/*
+ * check-name: constant-init-array
+ * check-command: test-linearize -Wno-decl -fdump-ir $file
+ *
+ * check-output-ignore
+ * check-output-excludes: phisrc\\..*return.*\\$2
+ * check-output-contains: load\\.
+ */