Skip to content

Commit

Permalink
2014-02-26 Richard Biener <rguenther@suse.de>
Browse files Browse the repository at this point in the history
	PR bootstrap/60343
	* lra-assigns.c (spill_for): Avoid mixed-sign comparison.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208170 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
rguenth committed Feb 26, 2014
1 parent 3befdeb commit adfa3d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions gcc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2014-02-26 Richard Biener <rguenther@suse.de>

PR bootstrap/60343
* lra-assigns.c (spill_for): Avoid mixed-sign comparison.

2014-02-25 Ilya Tocar <ilya.tocar@intel.com>

* common/config/i386/predicates.md (const1256_operand): Remove.
Expand Down
2 changes: 1 addition & 1 deletion gcc/lra-assigns.c
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ spill_for (int regno, bitmap spilled_pseudo_bitmap)
}
n = 0;
if (sparseset_cardinality (live_range_reload_inheritance_pseudos)
<= LRA_MAX_CONSIDERED_RELOAD_PSEUDOS)
<= (unsigned)LRA_MAX_CONSIDERED_RELOAD_PSEUDOS)
EXECUTE_IF_SET_IN_SPARSESET (live_range_reload_inheritance_pseudos,
reload_regno)
if ((int) reload_regno != regno
Expand Down

0 comments on commit adfa3d5

Please sign in to comment.