Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
e0f3e290
Commit
e0f3e290
authored
Sep 16, 2013
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed alignment.
parent
b907e74d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
jump_x86_64_sysv_elf_gas.S
common/system/jump_x86_64_sysv_elf_gas.S
+1
-1
make_x86_64_sysv_elf_gas.S
common/system/make_x86_64_sysv_elf_gas.S
+8
-1
No files found.
common/system/jump_x86_64_sysv_elf_gas.S
View file @
e0f3e290
...
...
@@ -41,7 +41,7 @@
.text
.globl jump_fcontext
.type jump_fcontext,@function
.align
16
.align
8
jump_fcontext:
movq %rbx, (%rdi) /* save RBX */
movq %r12, 0x8(%rdi) /* save R12 */
...
...
common/system/make_x86_64_sysv_elf_gas.S
View file @
e0f3e290
...
...
@@ -40,8 +40,12 @@
.text
.globl make_fcontext
#ifndef __APPLE__
.type make_fcontext,@function
.align 16
#endif
.align 8
make_fcontext:
leaq -0x58(%rdi), %rax /* reserve space for fcontext_t at top of context stack */
...
...
@@ -70,5 +74,8 @@ finish:
xorq %rdi, %rdi /* exit code is zero */
call _exit@PLT /* exit application */
hlt
#ifndef __APPLE__
.size make_fcontext,.-make_fcontext
#endif
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