Unfortunately subo formation in CGP prevents obvious ways of
testing this.
But we already have BLSI in here and the flag behavior is
well understood.
Might become more useful if we improve PR42571.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365702
91177308-0d34-0410-b5e6-
96231b3b80d8
case X86::BLSI32rr:
case X86::BLSI64rr:
return X86::COND_AE;
- // TODO: BLSR, BLSMSK, and TBM instructions.
+ case X86::BLSR32rr:
+ case X86::BLSR64rr:
+ case X86::BLSMSK32rr:
+ case X86::BLSMSK64rr:
+ return X86::COND_B;
+ // TODO: TBM instructions.
}
}