Searched refs:AsmFcmlt (Results 1 – 1 of 1) sorted by relevance
3578 constexpr auto AsmFcmlt = ASM_INSN_WRAP_FUNC_W_RES_W_ARG("fcmlt %s0, %s1, #0"); in TEST() local3579 ASSERT_EQ(AsmFcmlt(bit_cast<uint32_t>(-1.0f)), 0xffffffffULL); in TEST()3580 ASSERT_EQ(AsmFcmlt(bit_cast<uint32_t>(0.0f)), 0x00000000ULL); in TEST()3581 ASSERT_EQ(AsmFcmlt(bit_cast<uint32_t>(1.0f)), 0x00000000ULL); in TEST()3585 constexpr auto AsmFcmlt = ASM_INSN_WRAP_FUNC_W_RES_W_ARG("fcmlt %0.4s, %1.4s, #0"); in TEST() local3587 __uint128_t res = AsmFcmlt(arg); in TEST()