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
b8abece3
Commit
b8abece3
authored
May 11, 2011
by
Revital Eres
Committed by
Revital Eres
May 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip DEBUG_INSN in loop-doloop.c
From-SVN: r173646
parent
ce7b3761
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/loop-doloop.c
+1
-1
No files found.
gcc/ChangeLog
View file @
b8abece3
2011-05-11 Revital Eres <revital.eres@linaro.org>
* loop-doloop.c (doloop_condition_get): Use prev_nondebug_insn
instead of PREV_INSN.
2011-05-11 Revital Eres <revital.eres@linaro.org>
* modulo-sched.c (sms_schedule): Support new form of doloop pattern
* loop-doloop.c (doloop_condition_get): Likewise.
* config/arm/thumb2.md (*thumb2_addsi3_compare0): Remove "*".
...
...
gcc/loop-doloop.c
View file @
b8abece3
...
...
@@ -151,7 +151,7 @@ doloop_condition_get (rtx doloop_pat)
inc
=
XVECEXP
(
PATTERN
(
prev_insn
),
0
,
1
);
}
else
inc
=
PATTERN
(
PREV_INSN
(
doloop_pat
)
);
inc
=
PATTERN
(
prev_insn
);
/* We expect the condition to be of the form (reg != 0) */
cond
=
XEXP
(
SET_SRC
(
cmp
),
0
);
if
(
GET_CODE
(
cond
)
!=
NE
||
XEXP
(
cond
,
1
)
!=
const0_rtx
)
...
...
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