Teach ubsan to diagnose remainder operations which have undefined behavior due to signed overflow.
My copy of the C11 spec draft (6.5.5.6) says that: if the quotient a/b is representable, (a/b)*b + a%b shall equal a; otherwise, the behavior of both a/b and a%b is undefined. I take this to mean INT_MIN % -1 has signed overflow UB, so we should check for that.
Loosely depends on: https://reviews.llvm.org/D29369
I don't think you need the isIntegerType check here?