mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
- 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:
@@ -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 */
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user