K 10
svn:author
V 3
lev
K 8
svn:date
V 27
2011-11-04T13:15:16.000000Z
K 7
svn:log
V 295
  New patch from upstream:

  This fixes an error in comparisons of the lower parts of a multi-word integer
against a constant when using a comparison operation not directly supported
by an MSP430 instruction.  E.g.,:

int test_gtu32 (uint32_t x)
{
  if (x > 0xFFFF)
    return 1;
  return 0;
}

END
