mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Mark vector ctpop, cttz, and ctlz as Expand on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42905 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a3f269f7f6
commit
f0d0089340
@ -477,6 +477,9 @@ X86TargetLowering::X86TargetLowering(TargetMachine &TM)
|
||||
setOperationAction(ISD::SDIVREM, (MVT::ValueType)VT, Expand);
|
||||
setOperationAction(ISD::UDIVREM, (MVT::ValueType)VT, Expand);
|
||||
setOperationAction(ISD::FPOW, (MVT::ValueType)VT, Expand);
|
||||
setOperationAction(ISD::CTPOP, (MVT::ValueType)VT, Expand);
|
||||
setOperationAction(ISD::CTTZ, (MVT::ValueType)VT, Expand);
|
||||
setOperationAction(ISD::CTLZ, (MVT::ValueType)VT, Expand);
|
||||
}
|
||||
|
||||
if (Subtarget->hasMMX()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user