blob: 2a483992703aedc85ec6ce7676e620f19c70c9ce (
plain)
1
2
3
4
5
6
7
|
/* Extensions may wish to interpose and transform decoded instructions,
* based on other machine state. This is supported via a post-decode
* instruction hook, the default implementation of which is provided below.
*/
val ext_post_decode_hook : ast -> ast effect {rreg}
function ext_post_decode_hook(x) = x
|