<div dir="ltr">Hi Howard,<div><br></div><div>test/language.support/support.limits/limits/numeric.limits.members/traps.pass.cpp checks that std::numeric_limits<char>::traps is true, but include/limits only sets it to true on intel as far as I can tell:</div>
<div><br></div><div><div>#if __i386__ || __x86_64__</div><div>    static _LIBCPP_CONSTEXPR const bool traps = true;</div><div>#else</div><div>    static _LIBCPP_CONSTEXPR const bool traps = false;</div><div>#endif</div></div>
<div><br></div><div>How is this test supposed to work on arm? Should the test check for __i386__ || __x86_64__ too?</div><div><br></div><div>Thanks,</div><div>Nico</div></div>