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
af082de3
Commit
af082de3
authored
Jan 12, 2006
by
Ben Elliston
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rtlanal.c (find_reg_note): Assert insn is not null.
From-SVN: r109605
parent
27a2694f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
gcc/ChangeLog
+6
-1
gcc/rtlanal.c
+5
-2
No files found.
gcc/ChangeLog
View file @
af082de3
2006-01-11 Ben Elliston <bje@au.ibm.com>
* rtlanal.c (find_reg_note): Assert insn is not null.
2005-01-11 Kenneth Zadeck <zadeck@naturalbridge.com>
* df-scan.c (df_hard_reg_init) Moved declaration of i outside ifdef.
* df-scan.c (df_hard_reg_init): Move declaration of i outside
ifdef.
2006-01-11 Jeff Law <law@redhat.com>
...
...
gcc/rtlanal.c
View file @
af082de3
/* Analyze RTL for
C-Compiler
/* Analyze RTL for
GNU compiler.
Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software
Foundation, Inc.
This file is part of GCC.
...
...
@@ -1656,6 +1657,8 @@ find_reg_note (rtx insn, enum reg_note kind, rtx datum)
{
rtx
link
;
gcc_assert
(
insn
);
/* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
if
(
!
INSN_P
(
insn
))
return
0
;
...
...
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