- Don't prepend fastcall forward's target with @. Fixes binding issues in videoprt, thanks to Olaf Siejka for identifying the issue.

svn path=/trunk/; revision=45639
This commit is contained in:
Aleksey Bragin
2010-02-20 22:53:11 +00:00
parent 23323a7250
commit 3d83b18cf3
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -282,7 +282,7 @@ Index: spec32.c
if (!kill_at && target_cpu == CPU_x86) output( "@%d", at_param );
if (odp->flags & FLAG_FORWARD)
{
@@ -825,6 +883,51 @@
@@ -825,6 +883,50 @@
}
break;
}
@@ -296,7 +296,6 @@ Index: spec32.c
+ if (odp->flags & FLAG_FORWARD)
+ {
+ output( "=" );
+ if (!kill_at) output( "@" );
+ output( "%s", odp->link_name );
+ }
+ else if (strcmp(name, odp->link_name)) /* try to reduce output */
-1
View File
@@ -893,7 +893,6 @@ void BuildDef32File( DLLSPEC *spec )
if (odp->flags & FLAG_FORWARD)
{
output( "=" );
if (!kill_at) output( "@" );
output( "%s", odp->link_name );
}
else if (strcmp(name, odp->link_name)) /* try to reduce output */