1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
### Description Shift a left by the amount specified by unsigned 32-bit value in b. ### Syntax ``` shl.type d, a, b; .type = { .b16, .b32, .b64 }; ``` ### Semantics ``` d = a << b; ```