[PATCH] D42100: Fix codegen of stores of vectors with non byte-sized elements.

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 17 11:21:34 PST 2018


efriedma added a comment.

> I think all you need for non-integer types is a bitcast to an integer type after the EXTRACT_VECTOR_ELT.

Err, actually, wait a sec... why are we triggering this path for v4f80?  As long as the element size in bits is a multiple of 8, we can use separate stores for each element.  (Whether the element size is a power of two isn't really important.)


https://reviews.llvm.org/D42100





More information about the llvm-commits mailing list