This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
| consider the current behavior just a serious (performance) regression | (i.e., correctness vs aliasing and other subtleties should not be in | the way)
That is a clear regression.
Tree-ssa has been sold on the name of bringing better methodology to optimizations; given Theo's analysis, I think this issue no longer belongs to V3. It should be brought to GCC main list
int*
check(int* a, int* b)
{
for (; a < b; ++a)
if (*a == 1)
return a;
return a;
}:) --Dan
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |