[PATCH] D67497: [aarch64] move custom isel of extract_vector_elt to td file - NFC
Sebastian Pop via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 12 08:37:57 PDT 2019
sebpop added a comment.
The tablegen error only happens on the i16 patterns:
def : Pat<(i16 (extractelt (v8i16 V128:$V), (i64 0))), (EXTRACT_SUBREG V128:$V, hsub)>;
def : Pat<(i16 (extractelt (v4i16 V64:$V), (i64 0))), (EXTRACT_SUBREG V64:$V, hsub)>;
If I remove these two patterns, make check-all passes.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67497/new/
https://reviews.llvm.org/D67497
More information about the llvm-commits
mailing list