Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cd9ff09d
Commit
cd9ff09d
authored
Jun 16, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Jun 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: get_asm_ptr_keyword is not needed for ARM.
parent
94ae7ebd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
import.c
tools/winebuild/import.c
+3
-3
No files found.
tools/winebuild/import.c
View file @
cd9ff09d
...
...
@@ -673,7 +673,7 @@ static void output_import_thunk( const char *name, const char *table, int pos )
case
CPU_ARM
:
output
(
"
\t
ldr IP,[PC,#0]
\n
"
);
output
(
"
\t
mov PC,PC
\n
"
);
output
(
"
\t
%s %s
\n
"
,
get_asm_ptr_keyword
()
,
table
);
output
(
"
\t
.long %s
\n
"
,
table
);
output
(
"
\t
ldr PC,[IP,#%d]
\n
"
,
pos
);
break
;
case
CPU_POWERPC
:
...
...
@@ -989,7 +989,7 @@ static void output_delayed_import_thunks( const DLLSPEC *spec )
output
(
"
\t
mov LR,PC
\n
"
);
output
(
"
\t
add LR,LR,#8
\n
"
);
output
(
"
\t
ldr PC,[PC,#-4]
\n
"
);
output
(
"
\t
%s %s
\n
"
,
get_asm_ptr_keyword
()
,
asm_name
(
"__wine_spec_delay_load"
)
);
output
(
"
\t
.long %s
\n
"
,
asm_name
(
"__wine_spec_delay_load"
)
);
output
(
"
\t
mov IP,r0
\n
"
);
output
(
"
\t
ldmfd SP!, {r4-r10,FP,LR}
\n
"
);
output
(
"
\t
ldmfd SP!, {r0-r3}
\n
"
);
...
...
@@ -1084,7 +1084,7 @@ static void output_delayed_import_thunks( const DLLSPEC *spec )
output
(
"
\t
mov r0, r1
\n
"
);
output
(
"
\t
add r0, #%d
\n
"
,
j
);
output
(
"
\t
ldr PC,[PC,#-4]
\n
"
);
output
(
"
\t
%s %s
\n
"
,
get_asm_ptr_keyword
()
,
asm_name
(
"__wine_delay_load_asm"
)
);
output
(
"
\t
.long %s
\n
"
,
asm_name
(
"__wine_delay_load_asm"
)
);
break
;
case
CPU_POWERPC
:
switch
(
target_platform
)
...
...
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