[llvm-commits] [llvm-testresults] Grawp-PIC i386 nightly tester results
Chris Lattner
clattner at apple.com
Wed Nov 21 10:12:59 PST 2007
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
More information about the llvm-commits
mailing list