mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-07 07:55:04 -05:00
9 lines
149 B
C
9 lines
149 B
C
#include <x86intrin.h>
|
|
|
|
void function_xop(__m128i *dst, const __m128i *a, int b)
|
|
{
|
|
*dst = _mm_roti_epi64(*a, b);
|
|
}
|
|
|
|
int main(void) { return 0; }
|