Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
int32_minmax_x86.c
Go to the documentation of this file.
1#define int32_MINMAX(a,b) \
2do { \
3 int32 temp1; \
4 asm( \
5 "cmpl %1,%0\n\t" \
6 "mov %0,%2\n\t" \
7 "cmovg %1,%0\n\t" \
8 "cmovg %2,%1\n\t" \
9 : "+r"(a), "+r"(b), "=r"(temp1) \
10 : \
11 : "cc" \
12 ); \
13} while(0)