[llvm] [SandboxVec] Early return checks (PR #107465)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 5 14:47:28 PDT 2024
================
@@ -0,0 +1,9 @@
+; RUN: opt -passes=sandbox-vectorizer -debug %s 2>&1 | FileCheck %s
+; REQUIRES: asserts
+; Please note that this won't update automatically with update_test_checks.py !
+
+; Check that we early return if the function has the NoImplicitFloat attribute.
+define void @no_implicit_float() noimplicitfloat {
+; CHECK: SBVec: NoImplicitFloat attribute, return.
----------------
vporpo wrote:
OK let me drop this test and replace the other one with an IR snippet that is trivially vectorizable.
https://github.com/llvm/llvm-project/pull/107465
More information about the llvm-commits
mailing list