NUM_CONDITIONS bit positions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201719
138bc75d-0d04-0410-961f-
82ee72b054a4
+2013-08-14 Marek Polacek <polacek@redhat.com>
+
+ * ipa-inline-analysis.c (add_clause): Avoid shifting integer
+ NUM_CONDITIONS bit positions.
+
2013-08-13 Cary Coutant <ccoutant@google.com>
* dwarf2out.c (CHECKSUM_BLOCK): New macro.
and thus there is no point for looking for them. */
if (cc1->code == CHANGED || cc1->code == IS_NOT_CONSTANT)
continue;
- for (c2 = c1 + 1; c2 <= NUM_CONDITIONS; c2++)
+ for (c2 = c1 + 1; c2 < NUM_CONDITIONS; c2++)
if (clause & (1 << c2))
{
condition *cc1 =