binaryninja-api
binaryninja-api copied to clipboard
Simplify simple ternary operations
if (x)
a = N
else
a = M
If the N and M are above a small complication threshold we should convert it to a ternary while outputting
a = x ? N : M