Skip to content
  • Dan Gohman's avatar
    a589ee11
    Don't mark scalar integer multiplication as Expand on x86, since x86 · a589ee11
    Dan Gohman authored
    has plain one-result scalar integer multiplication instructions.
    This avoids expanding such instructions into MUL_LOHI sequences that
    must be special-cased at isel time, and avoids the problem with that
    code that provented memory operands from being folded.
    
    This fixes PR1874, addressesing the most common case. The uncommon
    cases of optimizing multiply-high operations will require work
    in DAGCombiner.
    
    llvm-svn: 47277
    a589ee11
    Don't mark scalar integer multiplication as Expand on x86, since x86
    Dan Gohman authored
    has plain one-result scalar integer multiplication instructions.
    This avoids expanding such instructions into MUL_LOHI sequences that
    must be special-cased at isel time, and avoids the problem with that
    code that provented memory operands from being folded.
    
    This fixes PR1874, addressesing the most common case. The uncommon
    cases of optimizing multiply-high operations will require work
    in DAGCombiner.
    
    llvm-svn: 47277
Loading