[PATCH] D32232: [X86][MPX] Add load & store instructions of bnd values to getLoadStoreRegOpcode function
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 19 09:42:04 PDT 2017
craig.topper added inline comments.
================
Comment at: lib/Target/X86/X86InstrInfo.cpp:6611
+ case 16:
+ if (X86::BNDRRegClass.hasSubClassEq(RC)) {
+ if (STI.is64Bit())
----------------
Can you put this below the VR128X? VR128X is going to be more common so we should check for it first.
https://reviews.llvm.org/D32232
More information about the llvm-commits
mailing list