OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.18.50/] [ld/] [testsuite/] [ld-elfvers/] [vers4.c] - Diff between revs 38 and 156

Only display areas with differences | Details | Blame | View Log

Rev 38 Rev 156
/*
/*
 * Testcase to make sure that a versioned symbol definition in an
 * Testcase to make sure that a versioned symbol definition in an
 * application correctly defines the version node, if and only if
 * application correctly defines the version node, if and only if
 * the actual symbol is exported.  This is built both with and without
 * the actual symbol is exported.  This is built both with and without
 * -export-dynamic.
 * -export-dynamic.
 */
 */
#include <stdio.h>
#include <stdio.h>
 
 
extern int foo ();
extern int foo ();
 
 
int
int
bar()
bar()
{
{
        return 3;
        return 3;
}
}
 
 
int
int
new_foo()
new_foo()
{
{
        return 1000+bar();
        return 1000+bar();
 
 
}
}
 
 
__asm__(".symver new_foo,foo@@VERS_2.0");
__asm__(".symver new_foo,foo@@VERS_2.0");
 
 
int
int
main()
main()
{
{
  printf("%d\n", foo());
  printf("%d\n", foo());
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.