Message ID | CABXYE2UtsmYpumPhBwNXPS+4-vTv6vus8Fv8b91PYPDGGd4iow@mail.gmail.com |
---|---|
State | New |
Headers | show |
2015-11-19 Jim Wilson <jim.wilson@linaro.org> * tree-vect-data-refs.c (compare_tree): Call STRIP_NOPS. Index: tree-vect-data-refs.c =================================================================== --- tree-vect-data-refs.c (revision 230429) +++ tree-vect-data-refs.c (working copy) @@ -2545,6 +2545,8 @@ compare_tree (tree t1, tree t2) if (t2 == NULL) return 1; + STRIP_NOPS (t1); + STRIP_NOPS (t2); if (TREE_CODE (t1) != TREE_CODE (t2)) return TREE_CODE (t1) < TREE_CODE (t2) ? -1 : 1;