Support for drop of multiple elements
Abierto
assembly
- Lenguaje dominante
- Rust
- Estrellas
- 772
- Forks
- 352
- Merge medio
- 1 d 12 h
- PR fusionados (30 d)
- 93
Descripción
# Feature request
Quite often when writing MASM we have to move multiple elements around and drop them. To do that it would be useful for the `drop` opcode to support a bitmask, to determine which values to drop. For example:
```
push.4 push.3 push.2 push.1 # stack is [1,2,3,4]
drop.0b0101 # drop the second and forth element, stack becomes [1,3]
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.