diff options
author | Yury Delendik <ydelendik@mozilla.com> | 2018-09-17 10:05:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 10:05:43 -0500 |
commit | cefbbfadae87135ff37fb4fc1058c6baf8de0140 (patch) | |
tree | 4be93c23ad7cb95623f699a2fff9ef829abc426c /test/fn_prolog_epilog.debugInfo.wast | |
parent | 403be53fb84645b9338454681792538af876cf87 (diff) | |
download | binaryen-cefbbfadae87135ff37fb4fc1058c6baf8de0140.tar.gz binaryen-cefbbfadae87135ff37fb4fc1058c6baf8de0140.tar.bz2 binaryen-cefbbfadae87135ff37fb4fc1058c6baf8de0140.zip |
Add debug information locations to the function prolog/epilog (#1674)
The current patch:
* Preserves the debug locations from function prolog and epilog
* Preserves the debug locations of the nested blocks
Diffstat (limited to 'test/fn_prolog_epilog.debugInfo.wast')
-rw-r--r-- | test/fn_prolog_epilog.debugInfo.wast | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/fn_prolog_epilog.debugInfo.wast b/test/fn_prolog_epilog.debugInfo.wast new file mode 100644 index 000000000..39c893fbb --- /dev/null +++ b/test/fn_prolog_epilog.debugInfo.wast @@ -0,0 +1,16 @@ +(module + ;;@ src.cpp:1:1 + (func + (nop) + ;;@ src.cpp:2:1 + (block $l0 + ;;@ src.cpp:2:2 + (block $l1 + (br $l1) + ) + ) + ;;@ src.cpp:3:1 + (return) + ;;@ src.cpp:3:2 + ) +) |