blob: def418aca833c289ade5075f4ee213bbf76258d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* Functional tests for the "target" attribute and pragma. */
/* { dg-do compile } */
/* { dg-require-effective-target target_attribute } */
/* { dg-options "-mno-mvcle -march=z13 -O3" } */
#pragma GCC target("no-mvcle")
void p0(char *b)
{
__builtin_memset (b, 0, 400);
}
#pragma GCC reset_options
__attribute__ ((target("no-mvcle")))
void a0(char *b)
{
__builtin_memset (b, 0, 400);
}
void d(char *b)
{
__builtin_memset (b, 0, 400);
}
/* { dg-final { scan-assembler-not "\tmvcle\t" } } */
|