[llvm-commits] [llvm] r55471 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Dan Gohman gohman at apple.com
Thu Aug 28 10:30:03 PDT 2008


On Aug 28, 2008, at 7:24 AM, Rafael Espindola wrote:
>
> -    Parts.resize(NumRegs);
> +    Parts.resize(Part + NumRegs);

Hi Rafael,

Good catch! One minor comment, the Parts vector still only needs
NumRegs entries here, so could you instead change the places
where Parts is used to use indices [0,NumRegs) instead of
[Parts,NumRegs+Parts)?

Thanks,

Dan




More information about the llvm-commits mailing list