Hi Chuck,
Your patch yesterday to change strtoll to strtol caused these
testsuite regressions:
On Nov 21, 2007, at 6:43 AM, Apache wrote:
> New Test Failures:
> test/CodeGen/ARM/pack.ll [DEJAGNU]
> test/CodeGen/ARM/rev.ll [DEJAGNU]
> test/TableGen/2006-09-18-LargeInt.td [DEJAGNU]
For example, this .td file:
// RUN: tblgen %s | grep -- -65536
def X {
int Y = 0xFFFF0000;
}
Should print:
def X {
int Y = -65536;
}
With your change, it prints:
def X {
int Y = 2147483647;
}
Please fix or revert asap,
-Chris
_______________________________________________
llvm-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits