view gcc/testsuite/objc.dg/weak-1.m @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Test for #pragma weak where the weak alias symbol isn't declared,
   although the symbol it is an alias for is defined in the
   translation unit.  Bug 7544.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-require-weak "" } */
/* { dg-require-alias "" } */
/* { dg-options "-fno-common" } */

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

#pragma weak bar1 = foo1
void foo1 (void) {}