aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/asan/pr81923.c
blob: dd9db728ce9ec304524e8a5bb39a903afe5dd106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR sanitizer/81923 */
/* { dg-do link } */

#define STR1(X) #X
#define STR2(X) STR1(X)

int foobar __asm (STR2(__USER_LABEL_PREFIX__) "barbaz") = 34;

int
main ()
{
  return 0;
}