Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / cold-attribute-2.c
blob4b61b9d56d8f01d1aa675d8f5d5ddd0d7f7420c0
1 /* { dg-do compile } */
2 /* { dg-options "-O2 --param=builtin-expect-probability=100" } */
3 #include <string.h>
4 t(int c)
6 if (__builtin_expect (c, 0))
8 cold_hint ();
9 return c * 11;
11 return c;
14 /* { dg-final { scan-assembler "imul" } } */