blob: 3bbf132bdf1ea5a1c36798391c15b31bdf8fc826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { dg-do compile } */
/* { dg-options "-O3 -fstrub=strict -fdump-rtl-expand" } */
/* { dg-require-effective-target strub } */
int __attribute__ ((__strub__)) var;
int f() {
return var;
}
/* { dg-final { scan-rtl-dump-not "strub_enter" "expand" } } */
/* { dg-final { scan-rtl-dump-not "strub_update" "expand" } } */
/* { dg-final { scan-rtl-dump-not "strub_leave" "expand" } } */
|