* profile-count.c (safe_scale_64bit): Fix GCC4.x path.
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / inlinehint-4.c
blob71b16f80be2c17dad5c3482b5ae44c849e8310e7
1 /* { dg-options "-O3 -fdump-ipa-inline-details -fno-early-inlining --param large-unit-insns=1 -fno-partial-inlining" } */
2 /* { dg-add-options bind_pic_locally } */
3 int *hashval;
4 int *hash;
5 int hash_size;
7 static int
8 lookup_slow (int val)
10 int i = val % hash_size;
11 while (hashval[i] && hashval[i] != val)
12 i++;
13 return hash[i];
16 static inline int
17 lookup (int val)
19 static int cache, cache_val;
20 if (val == cache_val)
21 return cache;
22 else
24 cache_val = val;
25 cache = lookup_slow (val);
26 return cache;
30 int
31 test (int i)
33 return lookup (i) + lookup (2 * i) + lookup (3 * i) + lookup (4 * i) +
34 lookup (5 * i) + lookup (6 * i) + lookup (7 * i) + lookup (8 * i) +
35 lookup (9 * i);
37 /* { dg-final { scan-ipa-dump "Wrapper penalty" "inline" } } */
38 /* { dg-final { scan-ipa-dump-not "Inlined lookup_slow into lookup" "inline" } } */
39 /* { dg-final { scan-ipa-dump "Inlined lookup into test" "inline" } } */