diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-09-04 21:25:55 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-09-04 21:25:55 -0700 |
commit | 57e74034f2589a4613e1c1d244a9c787250dccee (patch) | |
tree | 4df06b38aae087da43f6ea5ba683dd78663f12f7 | |
parent | 3449c5893c4e62905dd04c656e666746544a31e4 (diff) | |
download | mu-57e74034f2589a4613e1c1d244a9c787250dccee.tar.gz |
5622
-rw-r--r-- | 073next-token.subx | 1 | ||||
-rw-r--r-- | apps/subx-common.subx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/073next-token.subx b/073next-token.subx index a2969496..e02fe09c 100644 --- a/073next-token.subx +++ b/073next-token.subx @@ -1329,6 +1329,7 @@ test-skip-until-close-paren-works-from-mid-stream: # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 8/imm32 # add to esp # precondition: _test-input-stream->read == 2 + b8/copy-to-eax _test-input-stream/imm32 c7 0/subop/copy 1/mod/*+disp8 0/rm32/eax . . . . 4/disp8 2/imm32 # copy to *(eax+4) # skip-until-close-paren(_test-input-stream) # . . push args diff --git a/apps/subx-common.subx b/apps/subx-common.subx index 4b9423aa..72e625d2 100644 --- a/apps/subx-common.subx +++ b/apps/subx-common.subx @@ -489,6 +489,7 @@ test-skip-string-works-from-mid-stream: # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 8/imm32 # add to esp # precondition: line->read == 2 + b8/copy-to-eax _test-input-stream/imm32 c7 0/subop/copy 1/mod/*+disp8 0/rm32/eax . . . . 4/disp8 2/imm32 # copy to *(eax+4) # skip-string(_test-input-stream) # . . push args |