aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/s390/hotpatch-16.c
blob: b01c1c32254497b0a7901375d9b2060bf1b70174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Functional tests for the function hotpatching feature.  */

/* { dg-do compile } */
/* { dg-options "-O3 -mzarch -mhotpatch=0,0" } */

#include <stdio.h>

__attribute__ ((hotpatch(1,2)))
void hp1(void)
{
  printf("hello, world!\n");
}

/* Check number of occurences of certain instructions.  */
/* { dg-final { scan-assembler-times "nopr\t%r7" 1 } } */
/* { dg-final { scan-assembler-times "nop\t0" 1 } } */
/* { dg-final { scan-assembler-not "brcl\t0, 0" } } */