[PATCH] D93759: [VE] Expand single-element BUILD_VECTOR to INSERT_VECTOR_ELT
Kazushi Marukawa via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 5 05:57:43 PST 2021
kaz7 added inline comments.
================
Comment at: llvm/test/CodeGen/VE/Vector/expand_single_elem_build_vec.ll:2
+; REQUIRES: asserts
+; RUN: not --crash llc %s -march=ve -mattr=+vpu -o /dev/null |& FileCheck %s
+
----------------
`|&` works only with bash. For example, this test won't work on MacOS. Please use `2>&1 | ` style.
On the other hand, D93687 has been merged. So I guess this it is posisble to implement this test much simply using `LSV` instructions.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D93759/new/
https://reviews.llvm.org/D93759
More information about the llvm-commits
mailing list