mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Expand 64-bit CTLZ nodes if target architecture does not support it. Add test
case for DCLO and DCLZ. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -222,8 +222,10 @@ MipsTargetLowering(MipsTargetMachine &TM)
|
||||
setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
|
||||
}
|
||||
|
||||
if (!Subtarget->hasBitCount())
|
||||
if (!Subtarget->hasBitCount()) {
|
||||
setOperationAction(ISD::CTLZ, MVT::i32, Expand);
|
||||
setOperationAction(ISD::CTLZ, MVT::i64, Expand);
|
||||
}
|
||||
|
||||
if (!Subtarget->hasSwap()) {
|
||||
setOperationAction(ISD::BSWAP, MVT::i32, Expand);
|
||||
|
Reference in New Issue
Block a user