Add a check for this operation since for X86, it is only supported for 64 bit targets according to the FIXME in X86ISelLowering.cpp:
// Only custom-lower 64-bit SADDO and friends on 64-bit because we don't // handle type legalization for these operations here. // // FIXME: We really should do custom legalization for addition and // subtraction on x86-32 once PR3203 is fixed. We really can't do much better // than generic legalization for 64-bit multiplication-with-overflow, though.
Aren't we losing test coverage by dropping this?