This is an archive of the discontinued LLVM Phabricator instance.

[Fix] [Simplify] Fix r302986 that introduced non-inferrable templates.
ClosedPublic

Authored by bollu on May 14 2017, 3:02 PM.

Details

Summary
  • auto + decltype + template use waas not inferrable in Transform/Simplify.cpp accessesInOrder.
  • changed code to explicitly construct required vector instead of using higher order iterator helpers.
  • Failing compiler spec: Apple LLVM version 7.3.0 (clang-703.0.31) Target: x86_64-apple-darwin15.6.0

Event Timeline

bollu created this revision.May 14 2017, 3:02 PM
Meinersbur accepted this revision.May 14 2017, 3:18 PM

LGTM

I hoped to use that iterator in more places, which unfortunately doesn't work if it doesn't compile everywhere. Most of the time MSVC is the compiler having problems compiling templates, not Apple's clang.

This revision is now accepted and ready to land.May 14 2017, 3:18 PM

Please don't forget the "[Polly]" prefix in reviews. Omit the "[Fix]", it is already in the title.

bollu added a comment.May 15 2017, 1:12 AM

@Meinersbur: understood, sorry for the accident.

bollu closed this revision.May 15 2017, 1:38 AM

Closed by r303039