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] | |
there appear to be some optimizations that would appear quite straightforward to me that no pass is currently performing.
For example, the gimple code contains sequences of the form:
s1 = a + b s2 = s1 + c t1 = a + c t2 = t1 + b
but no pass recognizes that s2 == t2 ...
Any suggestions how to further investigate this? Is this just the way things are with the current tree optimizers, or is this supposed to work and we just need to find the bug?
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |