From: Nick Clifton Date: Mon, 11 Oct 2010 15:15:09 +0000 (+0000) Subject: pr44197.c: Require visibility support. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=40b7ae584b92e8bbeba399490a11db54f1fa4ff1;p=gcc.git pr44197.c: Require visibility support. * gcc.c-torture/compile/pr44197.c: Require visibility support. Allow for a user label prefix. From-SVN: r165315 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c6ab6da50cd..d49e1ee45b7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-10-11 Nick Clifton + + * gcc.c-torture/compile/pr44197.c: Require visibility support. + Allow for a user label prefix. + 2010-10-10 Richard Guenther * g++.dg/lto/20101010-1_0.C: New testcase. diff --git a/gcc/testsuite/gcc.c-torture/compile/pr44197.c b/gcc/testsuite/gcc.c-torture/compile/pr44197.c index 79f5421643f..9c2912ffc5d 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr44197.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr44197.c @@ -1,4 +1,14 @@ /* { dg-require-alias "" } */ +/* { dg-require-visibility "" } */ + +#ifndef __USER_LABEL_PREFIX__ +#define PREFIX "" +#else +#define xstr(s) str(s) +#define str(s) #s +#define PREFIX xstr(__USER_LABEL_PREFIX__) +#endif + typedef unsigned short int __uint16_t; enum { @@ -12,7 +22,7 @@ typedef __uint16_t __ctype_mask_t; extern const __ctype_mask_t *__C_ctype_b; extern __typeof (__C_ctype_b) - __C_ctype_b __asm__ ("" "__GI___C_ctype_b") + __C_ctype_b __asm__ (PREFIX "__GI___C_ctype_b") __attribute__ ((visibility ("hidden"))); static const __ctype_mask_t __C_ctype_b_data[] = { };