summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/lto/const-uniq_1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/lto/const-uniq_1.c')
-rw-r--r--gcc/testsuite/gcc.dg/lto/const-uniq_1.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/lto/const-uniq_1.c b/gcc/testsuite/gcc.dg/lto/const-uniq_1.c
new file mode 100644
index 000000000..ee1505cc9
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/lto/const-uniq_1.c
@@ -0,0 +1,23 @@
+extern int lookup1 (int i);
+extern int lookup2 (int i);
+extern void abort (void);
+
+int lookup3 (int i)
+{
+ int a[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
+ return a[i+2];
+}
+
+int main (void)
+{
+ if (lookup1(2) != 2)
+ abort ();
+
+ if (lookup2(2) != 3)
+ abort ();
+
+ if (lookup3(2) != 4)
+ abort ();
+
+ return 0;
+}