mirror of git://gcc.gnu.org/git/gcc.git
17 lines
430 B
C
17 lines
430 B
C
/* Functional tests for the function hotpatching feature. */
|
|
|
|
/* { dg-do compile } */
|
|
/* { dg-options "-O3 -mzarch -mhotpatch=0,3" } */
|
|
|
|
#include <stdio.h>
|
|
|
|
void hp1(void)
|
|
{
|
|
printf("hello, world!\n");
|
|
}
|
|
|
|
/* Check number of occurences of certain instructions. */
|
|
/* { dg-final { scan-assembler-not "nopr\t%r7" } } */
|
|
/* { dg-final { scan-assembler-not "nop\t0" } } */
|
|
/* { dg-final { scan-assembler-times "brcl\t0, 0" 1 } } */
|