Re: [llvm-commits] Major regressions

2007-04-22 Thread Chris Lattner
On Apr 21, 2007, at 4:12 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment not finding an alignment to use for a float x1 type, is this a bug? It could be. float x 1 isn't a useful

Re: [llvm-commits] Major regressions

2007-04-22 Thread Chris Lattner
On Apr 21, 2007, at 4:28 PM, Christopher Lamb wrote: On Apr 21, 2007, at 6:12 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment not finding an alignment to use for a float x1 type,

Re: [llvm-commits] Major regressions

2007-04-22 Thread Christopher Lamb
On Apr 22, 2007, at 1:40 AM, Chris Lattner wrote: On Apr 21, 2007, at 4:28 PM, Christopher Lamb wrote: On Apr 21, 2007, at 6:12 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment

[llvm-commits] Major regressions

2007-04-21 Thread Jeff Cohen
Commits in the last 12 hours or so have broken 34 regression tests and caused 21 failure in llvm-test. They appear to be concentrated in the vector area. ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu

Re: [llvm-commits] Major regressions

2007-04-21 Thread Reid Spencer
Jeff, I'm seeing these too. They all seem to be related to Christopher Lamb's alignment changes. If he doesn't step up to fix soon, I'll revert the changes. Reid. On Sat, 2007-04-21 at 07:30 -0700, Jeff Cohen wrote: Commits in the last 12 hours or so have broken 34 regression tests and

Re: [llvm-commits] Major regressions

2007-04-21 Thread Christopher Lamb
Blarg! Sorry folks. First major commit and I missed regressions. Reverting was the right thing to do, sorry I wasn't up earlier. -- Christopher Lamb On Apr 21, 2007, at 12:21 PM, Reid Spencer wrote: Jeff, I'm seeing these too. They all seem to be related to Christopher Lamb's

Re: [llvm-commits] Major regressions

2007-04-21 Thread Christopher Lamb
The regressions are related to the following code in SelectionDAG.cpp. MVT::getTypeForValueType asserts if passed a Vector as VT. if (Alignment == 0) { // Ensure that codegen never sees alignment 0 const Type *Ty = MVT::getTypeForValueType(VT); Alignment =

Re: [llvm-commits] Major regressions

2007-04-21 Thread Christopher Lamb
I'm getting a regression after my fixes that's coming from getABIAlignment not finding an alignment to use for a float x1 type, is this a bug? -- Christopher Lamb On Apr 21, 2007, at 12:21 PM, Reid Spencer wrote: Jeff, I'm seeing these too. They all seem to be related to Christopher

Re: [llvm-commits] Major regressions

2007-04-21 Thread Reid Spencer
On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment not finding an alignment to use for a float x1 type, is this a bug? It could be. float x 1 isn't a useful vector so it probably doesn't have an ABI Alignment.

Re: [llvm-commits] Major regressions

2007-04-21 Thread Christopher Lamb
On Apr 21, 2007, at 6:12 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment not finding an alignment to use for a float x1 type, is this a bug? It could be. float x 1 isn't a

Re: [llvm-commits] Major regressions

2007-04-21 Thread Reid Spencer
On Sat, 2007-04-21 at 18:28 -0500, Christopher Lamb wrote: On Apr 21, 2007, at 6:12 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment not finding an alignment to use for a float x1

Re: [llvm-commits] Major regressions

2007-04-21 Thread Christopher Lamb
On Apr 21, 2007, at 6:41 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:28 -0500, Christopher Lamb wrote: On Apr 21, 2007, at 6:12 PM, Reid Spencer wrote: On Sat, 2007-04-21 at 18:07 -0500, Christopher Lamb wrote: I'm getting a regression after my fixes that's coming from getABIAlignment

[llvm-commits] Major regressions

2007-01-21 Thread Jeff Cohen
In the two weeks since I last ran them, the regression tests have gone from 4 to 63 unexpected failures. Is this expected? ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Re: [llvm-commits] Major regressions

2007-01-21 Thread Jeff Cohen
Well, I'm using the most recent version of both llvm and llvm-gcc (revision 254). 21 of the failures are ARM, but I don't care about those. llvm-test is still running, but it's on track to matching the 275 failures I got the last time I ran it. I'm not going to switch to Linux or OS X or

Re: [llvm-commits] Major regressions

2007-01-21 Thread Chris Lattner
On Jan 21, 2007, at 2:01 PM, Jeff Cohen wrote: Well, I'm using the most recent version of both llvm and llvm-gcc (revision 254). 21 of the failures are ARM, but I don't care about those. llvm-test is still running, but it's on track to matching the 275 failures I got the last time I ran