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
81d6d080
Commit
81d6d080
authored
Jul 05, 2011
by
Sebastian Pop
Committed by
Sebastian Pop
Jul 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct computation of max.
* graphite-ppl.h (value_max): Correct computation of max. From-SVN: r175859
parent
369e3430
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/graphite-ppl.h
+2
-1
No files found.
gcc/ChangeLog
View file @
81d6d080
2011-07-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-ppl.h (value_max): Correct computation of max.
2011-07-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (clast_name_to_index): Add missing space.
2011-07-05 Richard Guenther <rguenther@suse.de>
...
...
gcc/graphite-ppl.h
View file @
81d6d080
...
...
@@ -131,7 +131,8 @@ value_max (mpz_t res, mpz_t v1, mpz_t v2)
{
if
(
mpz_cmp
(
v1
,
v2
)
<
0
)
mpz_set
(
res
,
v2
);
mpz_set
(
res
,
v1
);
else
mpz_set
(
res
,
v1
);
}
/* Builds a new identity map for dimension DIM. */
...
...
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