Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
c5434abc
Commit
c5434abc
authored
13 years ago
by
Attila Nagy
Browse files
Options
Downloads
Patches
Plain Diff
ads2gas translates PRESERVE8, REQUIRE8 and ARM directives
Change-Id: I22c547af80e0bce0c7b5f6054ad0aa61f37d717b
parent
3c755577
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/make/ads2gas.pl
+6
-7
6 additions, 7 deletions
build/make/ads2gas.pl
with
6 additions
and
7 deletions
build/make/ads2gas.pl
+
6
−
7
View file @
c5434abc
...
...
@@ -126,15 +126,14 @@ while (<STDIN>)
# ALIGN directive
s/ALIGN/.balign/g
;
#
Strip ARM
s/\sARM/
@ ARM
/g
;
#
ARM code
s/\sARM/
.arm
/g
;
# Strip REQUIRE8
#s/\sREQUIRE8/@ REQUIRE8/g;
s/\sREQUIRE8/@ /g
;
#EQU cause problem
# REQUIRE8 Stack is required to be 8-byte aligned
s/\sREQUIRE8/.eabi_attribute Tag_ABI_align_needed, 1/g
;
#
Strip
PRESERVE8
s/\sPRESERVE8/
@ PRESERVE8
/g
;
# PRESERVE8
Stack 8-byte align is preserved
s/\sPRESERVE8/
.eabi_attribute Tag_ABI_align_preserved, 1
/g
;
# Use PROC and ENDP to give the symbols a .size directive.
# This makes them show up properly in debugging tools like gdb and valgrind.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment