You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
199 B

int
foo_v1 (int a)
{
return 1;
}
asm (".symver foo_v1, foo@v1");
int
foo_v2 (int a)
{
return 2;
}
asm (".symver foo_v2, foo@v2");
int
foo (int a)
{
return 3;
}
asm (".symver foo, foo@@@v3");