The instruction:
11020338 822fb0e1 lsl.s r2, r2, #0x1f
Is lifted to:
8 @ 11020338 r2 = lsl.d{*}(r2, 0x1f)
which is then converted to the following LLIL:
5 @ 11020338 temp1.d = r2
6 @ 11020338 r2 = r2 << 0x1f
7 @ 11020338 flag:n = temp1.d << 0x1f s< 0
8 @ 11020338 flag:c = unimplemented
The instruction:
11020338 822fb0e1 lsl.s r2, r2, #0x1f
Is lifted to:
8 @ 11020338 r2 = lsl.d{*}(r2, 0x1f)
which is then converted to the following LLIL:
5 @ 11020338 temp1.d = r2
6 @ 11020338 r2 = r2 << 0x1f
7 @ 11020338 flag:n = temp1.d << 0x1f s< 0
8 @ 11020338 flag:c = unimplemented