diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-26 21:23:15 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-26 21:23:15 -0800 |
commit | 066014d4b4ad60aeb25ffbb7ec884c2a426b1a05 (patch) | |
tree | 820b6bc61ef390821ac3cc4d20f91ba6c1a14825 | |
parent | 5ce7c8dcff3acf8b3eb51fb63b1cf65429996b1f (diff) | |
download | mu-066014d4b4ad60aeb25ffbb7ec884c2a426b1a05.tar.gz |
7280
-rwxr-xr-x | apps/mu | bin | 576537 -> 576603 bytes | |||
-rw-r--r-- | apps/mu.subx | 18 |
2 files changed, 9 insertions, 9 deletions
diff --git a/apps/mu b/apps/mu index 405b399d..37ca3772 100755 --- a/apps/mu +++ b/apps/mu Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx index 4962352d..909dbfc5 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -7769,7 +7769,7 @@ test-copy-to-non-register: 5d/pop-to-ebp c3/return -test-copy-non-scalar: +test-copy-from-non-scalar-inout: # . prologue 55/push-ebp 89/<- %ebp 4/r32/esp @@ -7804,10 +7804,10 @@ test-copy-non-scalar: #? (rewind-stream _test-error-stream) #? # }}} # check output - (check-stream-equal _test-output-stream "" "F - test-copy-non-scalar: output should be empty") - (check-next-stream-line-equal _test-error-stream "fn foo: stmt copy: 'x' is too large to fit in a register" "F - test-copy-non-scalar: error message") + (check-stream-equal _test-output-stream "" "F - test-copy-from-non-scalar-inout: output should be empty") + (check-next-stream-line-equal _test-error-stream "fn foo: stmt copy: 'x' is too large to fit in a register" "F - test-copy-from-non-scalar-inout: error message") # check that stop(1) was called - (check-ints-equal *(edx+4) 2 "F - test-copy-non-scalar: exit status") + (check-ints-equal *(edx+4) 2 "F - test-copy-from-non-scalar-inout: exit status") # don't restore from ebp 81 0/subop/add %esp 8/imm32 # . epilogue @@ -8115,7 +8115,7 @@ test-copy-to-deref-address: 5d/pop-to-ebp c3/return -test-copy-to-non-scalar: +test-copy-to-from-non-scalar-inout: # . prologue 55/push-ebp 89/<- %ebp 4/r32/esp @@ -8151,11 +8151,11 @@ test-copy-to-non-scalar: #? (rewind-stream _test-error-stream) #? # }}} # check output - (check-stream-equal _test-output-stream "" "F - test-copy-to-non-scalar: output should be empty") -#? (check-next-stream-line-equal _test-error-stream "fn foo: stmt copy-to: 'x' is too large to copy" "F - test-copy-to-non-scalar: error message") - (check-next-stream-line-equal _test-error-stream "fn foo: stmt copy-to: source (second inout) is in memory" "F - test-copy-to-non-scalar: error message") + (check-stream-equal _test-output-stream "" "F - test-copy-to-from-non-scalar-inout: output should be empty") +#? (check-next-stream-line-equal _test-error-stream "fn foo: stmt copy-to: 'x' is too large to copy" "F - test-copy-to-from-non-scalar-inout: error message") + (check-next-stream-line-equal _test-error-stream "fn foo: stmt copy-to: source (second inout) is in memory" "F - test-copy-to-from-non-scalar-inout: error message") # check that stop(1) was called - (check-ints-equal *(edx+4) 2 "F - test-copy-to-non-scalar: exit status") + (check-ints-equal *(edx+4) 2 "F - test-copy-to-from-non-scalar-inout: exit status") # don't restore from ebp 81 0/subop/add %esp 8/imm32 # . epilogue |