The hc_bytealign_be_S() was merged too early, but is not yet used anywhere for this platform so we can remove it again.

pull/2930/head
Jens Steube 3 years ago
parent b386ab1c27
commit 1f22984313

@ -1711,15 +1711,6 @@ DECLSPEC u32 hc_bfe_S (const u32 a, const u32 b, const u32 c)
return r;
}
DECLSPEC u32 hc_bytealign_be_S (const u32 a, const u32 b, const int c)
{
const int c_mod_4 = c & 3;
const u32 r = hc_byte_perm_S (b, a, (0x76543210 >> (c_mod_4 * 4)) & 0xffff);
return r;
}
DECLSPEC u32x hc_bytealign (const u32x a, const u32x b, const int c)
{
const int c_mod_4 = c & 3;

@ -144,3 +144,4 @@ but this is nededed for VS compiler which doesn't have inline keyword but has __
#endif
#endif // _COMMON_H

Loading…
Cancel
Save