Commit d1e277fb authored by Simon Richter's avatar Simon Richter Committed by Alexandre Julliard

winebuild: Fix branch mnemonic on ppc.

parent aa821fdd
......@@ -368,7 +368,18 @@ void BuildSpec32File( DLLSPEC *spec )
else
{
output( "\n\t.section \".init\",\"ax\"\n" );
output( "\tjmp 1f\n" );
switch(target_cpu)
{
case CPU_x86:
case CPU_x86_64:
case CPU_ALPHA:
case CPU_SPARC:
output( "\tjmp 1f\n" );
break;
case CPU_POWERPC:
output( "\tb 1f\n" );
break;
}
output( "__wine_spec_pe_header:\n" );
output( "\t.skip %u\n", 65536 + page_size );
output( "1:\n" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment