[PATCH] D88396: [X86] Replace movaps with movups when avx is enabled.
LuoYuanke via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 30 01:26:52 PDT 2020
LuoYuanke added inline comments.
================
Comment at: llvm/lib/Target/X86/X86MovapsToMovups.cpp:70
+ TII = ST.getInstrInfo();
+ if (!ST.hasAVX())
+ return false;
----------------
We only target AVX.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88396/new/
https://reviews.llvm.org/D88396
More information about the llvm-commits
mailing list