GCC has gained support for these multiprecision arithmetic builtins in
r14-1896-g2b4e0415ad6, and although they aren't explicitly specified
as such in the documentation, they are usable in a constexpr context.
This commit adds constexpr evaluation support to Clang to match GCC's
behavior. The implementation mirrors how the builtins are lowered to a
pair of u{add,sub}.with.overflow operations and the carryout is set to
1 if either of those result in an overflow.
Adding this just to be sure that the include below picks up the limits.h from the compiler and not the limits.h from the test system itself.