[PATCH] D119121: [test-suite] Add unit tests for vectorizer memory runtime checks.
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 17 10:27:27 PST 2022
Meinersbur accepted this revision.
Meinersbur added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: SingleSource/UnitTests/Vectorizer/runtime-checks.cpp:49-50
+
+template <typename F, typename... Args>
+__attribute__((optnone)) void callThroughOptnone(F &&f, Args &&...args) {
+ f(std::forward<Args>(args)...);
----------------
Could you add a description for why we are using this function?
Repository:
rT test-suite
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119121/new/
https://reviews.llvm.org/D119121
More information about the llvm-commits
mailing list