[PATCH] D53521: [X86][BMI1] X86DAGToDAGISel: select BEXTR from x << (32 - y) >> (32 - y) pattern
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 22 13:40:15 PDT 2018
RKSimon added inline comments.
================
Comment at: lib/Target/X86/X86ISelDAGToDAG.cpp:2705
+ unsigned Size = NVT == MVT::i64 ? 64 : 32;
+
----------------
Size = NVT.getSizeInBits();
Repository:
rL LLVM
https://reviews.llvm.org/D53521
More information about the llvm-commits
mailing list