[PATCH] D33768: [Polly] Exclude Ignored Intrinsics from explicit instruction list

Michael Kruse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 1 06:33:24 PDT 2017


Meinersbur added a comment.

You test case is relatively large for such a simple check. Can you find a smaller one? The one in https://reviews.llvm.org/D33163 was a lot smaller. Only a loop and a store in its body is required for the smallest scop. I prefer manually crafted IR over clang-generated IR. Avoid unnamed values (e.g. `%0`) which can cause a problems with finding unique names in LLVM. The pass `-instnamer` gives ever value a name.


https://reviews.llvm.org/D33768





More information about the llvm-commits mailing list