+2014-01-24 Marek Polacek <polacek@redhat.com>
+
+ * gcc.dg/pr59846.c (fn1, fn2): Use ULL suffix.
+
2014-01-23 H.J. Lu <hongjiu.lu@intel.com>
PR target/59929
_Bool
fn1 (unsigned int p)
{
- return 0UL > p; /* { dg-warning "14:comparison is always false due to limited range of data type" } */
+ return 0ULL > p; /* { dg-warning "15:comparison is always false due to limited range of data type" } */
}
_Bool
fn2 (unsigned int p)
{
- return 0UL <= p; /* { dg-warning "14:comparison is always true due to limited range of data type" } */
+ return 0ULL <= p; /* { dg-warning "15:comparison is always true due to limited range of data type" } */
}
_Bool