-rw-r--r-- 147 saferewrite-20210915/src/int32_sort2/compilebug/sort2.c
#include <inttypes.h> void int32_sort2(int32 *x) { int32_t x0 = x[0]; int32_t x1 = x[1]; if (x1 < x0) { x[0] = x1; x[1] = x0; } }