mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Handle new intrinsics with vector arguments.
Patch by Paul Redmond. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56059 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3ee25dca5b
commit
fb0e1323e2
@ -552,6 +552,11 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
|
|||||||
setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
|
setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
|
||||||
setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
|
setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
|
||||||
setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
|
setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
|
||||||
|
setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
|
||||||
|
setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
|
||||||
|
setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
|
||||||
|
setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
|
||||||
|
setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Subtarget->hasMMX()) {
|
if (Subtarget->hasMMX()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user