aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ipa/pr84658.C
blob: 6846e1832bdf228e95faa0385844b1ddd7fe9ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* PR ipa/84658 */
/* { dg-do run } */
/* { dg-options "-O2 -fmerge-all-constants -std=c++11" } */

const int kTestCasesFoo[] = { 0, 1, 2, 3, 4, 5, 8, 15, 16, 17, 512, 1020, 1021, 1022, 1023, 1024 };
const int kTestCasesBar[] = { 0, 1, 2, 3, 4, 5, 8, 15, 16, 17, 512, 1020, 1021, 1022, 1023, 1024 };

void Foo() {
    __builtin_printf("foo:");
    for (int count : kTestCasesFoo) {
        __builtin_printf("%d,", count);
    }
    __builtin_printf(";\n");
}

void Bar() {
    __builtin_printf("bar:");
    for (int count : kTestCasesBar) {
        __builtin_printf("%d,", count);
    }
    __builtin_printf(";\n");
}

int main() {
    Foo();
    Bar();
}

/* { dg-output "foo:0,1,2,3,4,5,8,15,16,17,512,1020,1021,1022,1023,1024,;(\n|\n\r|\r)*" } */
/* { dg-output "bar:0,1,2,3,4,5,8,15,16,17,512,1020,1021,1022,1023,1024,;(\n|\n\r|\r)*" } */