Since IntegerAttr::getInt() was updated in
35b685270b410f6a1351c2a527021f22330c25b9 to only apply to signless
integers, trying to round trip an explicitly signed/unsigned constant
through mlir-opt has triggered an assert when
ConstantOp::getAsmResultNames() calls IntegerAttr::getInt().
This patch extends ConstantOp::getAsmResultNames() to deal with
signfull integers.