Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d1e277fb
Commit
d1e277fb
authored
May 31, 2008
by
Simon Richter
Committed by
Alexandre Julliard
Jun 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Fix branch mnemonic on ppc.
parent
aa821fdd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
spec32.c
tools/winebuild/spec32.c
+12
-1
No files found.
tools/winebuild/spec32.c
View file @
d1e277fb
...
...
@@ -368,7 +368,18 @@ void BuildSpec32File( DLLSPEC *spec )
else
{
output
(
"
\n\t
.section
\"
.init
\"
,
\"
ax
\"\n
"
);
output
(
"
\t
jmp 1f
\n
"
);
switch
(
target_cpu
)
{
case
CPU_x86
:
case
CPU_x86_64
:
case
CPU_ALPHA
:
case
CPU_SPARC
:
output
(
"
\t
jmp 1f
\n
"
);
break
;
case
CPU_POWERPC
:
output
(
"
\t
b 1f
\n
"
);
break
;
}
output
(
"__wine_spec_pe_header:
\n
"
);
output
(
"
\t
.skip %u
\n
"
,
65536
+
page_size
);
output
(
"1:
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment