Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
fd4cb6b0
Commit
fd4cb6b0
authored
May 25, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(L_eh, i386): Remove in-line comments in assembly code--the '#'
character is not valid for the SYSV as. From-SVN: r9817
parent
0b15d35f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/libgcc2.c
+4
-4
No files found.
gcc/libgcc2.c
View file @
fd4cb6b0
...
...
@@ -2306,16 +2306,16 @@ __unwind_function(void *ptr)
/* Undo current frame */
asm
(
"movl %ebp,%esp"
);
asm
(
"popl %ebp"
);
asm
(
"# like ret, but stay here"
);
/* like ret, but stay here */
asm
(
"addl $4,%esp"
);
/* Now, undo previous frame. */
/* This is a test routine, as we have to dynamically probe to find out
what to pop for certain, this is just a guess. */
asm
(
"leal -16(%ebp),%esp"
);
asm
(
"pop %eax
# really for popl %ebx"
);
asm
(
"pop %eax
# really for popl %esi"
);
asm
(
"pop %eax
# really for popl %edi"
);
asm
(
"pop %eax
"
);
/* really for popl %ebx */
asm
(
"pop %eax
"
);
/* really for popl %esi */
asm
(
"pop %eax
"
);
/* really for popl %edi */
asm
(
"movl %ebp,%esp"
);
asm
(
"popl %ebp"
);
...
...
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