1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 #include <string.h>
4 
5 int
6 __attribute__ ((cold))
t(int c)7 t(int c)
8 {
9   return c * 11;
10 }
11 
12 /* { dg-final { scan-assembler "imul" } } */
13