aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/weak/weak-12.c
blob: 72f8991cc9826ee124d8711f1bec04c4d7f9cf81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Test for #pragma weak with declaration not at file scope.  */
/* { dg-do compile } */
/* { dg-require-weak "" } */
/* { dg-options "" } */
/* NVPTX's weak is applied to the definition,  not declaration.  */
/* { dg-skip-if "" { nvptx-*-* } { "*" } { "" } } */

/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?foo" } } */

#pragma weak foo

int
main (void)
{
  extern int foo (void);
  if (&foo)
    return foo ();
  return 0;
}