OSDN Git Service

PR middle-end/29274
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / cold-attribute-3.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 #include <string.h>
4
5 int
6 __attribute__ ((cold))
7 t(int c)
8 {
9   return c * 11;
10 }
11
12 /* { dg-final { scan-assembler "imul" } } */