URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [ia64/] [visibility-2.c] - Rev 319
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test visibility attribute. */ /* { dg-do link { target ia64*-*-linux* } } */ /* { dg-options "-O2 -fpic" } */ int foo (int x); int bar (int x) __asm__ ("foo") __attribute__ ((visibility ("hidden"))); int bar (int x) { return x; } int main () { return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log