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
bb02e7ea
Commit
bb02e7ea
authored
27 years ago
by
Richard Henderson
Committed by
Richard Henderson
27 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alpha.c (alpha_handle_trap_shadows): Ignore CLOBBERs.
From-SVN: r17416
parent
43ad1f80
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.c
+3
-2
No files found.
gcc/ChangeLog
View file @
bb02e7ea
Sun Jan 18 20:18:01 1998 Richard Henderson <rth@cygnus.com>
* alpha.c (alpha_handle_trap_shadows): Ignore CLOBBERs.
Sun Jan 18 01:54:27 1998 Jeffrey A Law (law@cygnus.com)
* alpha/xm-winnt.h (HAS_INIT_SECTION): Undefine.
...
...
This diff is collapsed.
Click to expand it.
gcc/config/alpha/alpha.c
View file @
bb02e7ea
...
...
@@ -3718,8 +3718,9 @@ alpha_handle_trap_shadows (insns)
switch
(
GET_CODE
(
i
))
{
case
INSN
:
/* Annoyingly, get_attr_trap will abort on USE. */
if
(
GET_CODE
(
PATTERN
(
i
))
==
USE
)
/* Annoyingly, get_attr_trap will abort on these. */
if
(
GET_CODE
(
PATTERN
(
i
))
==
USE
||
GET_CODE
(
PATTERN
(
i
))
==
CLOBBER
)
break
;
summarize_insn
(
PATTERN
(
i
),
&
sum
,
0
);
...
...
This diff is collapsed.
Click to expand it.
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