diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-01-16 10:40:19 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-01-16 10:40:19 -0800 |
commit | 2803748890cceb433c1e83f12d052c38e42f731f (patch) | |
tree | 2e62e13afaeecf105b9cf5cda218717561792988 /baremetal | |
parent | b62865572211a5675493956605e7137d19265a9b (diff) | |
download | mu-2803748890cceb433c1e83f12d052c38e42f731f.tar.gz |
7527
Diffstat (limited to 'baremetal')
-rw-r--r-- | baremetal/309stream.subx | 1 | ||||
-rw-r--r-- | baremetal/313index-bounds-check.subx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/baremetal/309stream.subx b/baremetal/309stream.subx index 0d470ca6..fc727329 100644 --- a/baremetal/309stream.subx +++ b/baremetal/309stream.subx @@ -155,6 +155,7 @@ $read-from-stream:abort: { eb/jump loop/disp8 } + # never gets here stream-first: # s: (addr stream byte) -> result/eax: byte # . prologue diff --git a/baremetal/313index-bounds-check.subx b/baremetal/313index-bounds-check.subx index 422d1d84..8a7700c6 100644 --- a/baremetal/313index-bounds-check.subx +++ b/baremetal/313index-bounds-check.subx @@ -30,6 +30,7 @@ __check-mu-array-bounds: # index: int, elem-size: int, arr-size: int, function- { eb/jump loop/disp8 } + # never gets here $__check-mu-array-bounds:end: # . restore registers 5a/pop-to-edx @@ -45,3 +46,4 @@ __check-mu-array-bounds:overflow: { eb/jump loop/disp8 } + # never gets here |