aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/cold-attribute-1.c
blob: 658eb3e25bb0a42cf606f59e6d6678ebbe57dd67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-O2 -mno-avx" } */
#include <string.h>
static inline
__attribute__ ((cold)) void
my_cold_memset (void *a, int b,int c)
{
  memset (a,b,c);
}
void
t(void *a,int b,int c)
{
  if (a)
    my_cold_memset (a,b,40);
}

/* The IF conditional should be predicted as cold and my_cold_memset inlined
   for size expanding memset as rep; stosb.  */
/* { dg-final { scan-assembler "stosb" } } */