diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-09-08 00:24:48 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-09-08 00:24:48 -0400 |
| commit | d324b1befa6c7f0fd5d18ffe45a98d104a62d8a0 (patch) | |
| tree | 0258132b13007f3b93cabc2ca54f4d17689e0c2d /std/debug.zig | |
| parent | de7e88c38fcaa37c98c2425be341568e8e193ffc (diff) | |
| download | zig-d324b1befa6c7f0fd5d18ffe45a98d104a62d8a0.tar.gz zig-d324b1befa6c7f0fd5d18ffe45a98d104a62d8a0.zip | |
ability to infer parameter types
Diffstat (limited to 'std/debug.zig')
| -rw-r--r-- | std/debug.zig | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/std/debug.zig b/std/debug.zig index e691245610..a2f40cd730 100644 --- a/std/debug.zig +++ b/std/debug.zig @@ -73,11 +73,7 @@ fn findCompileUnitOffset(st: &ElfStackTrace, target_address: usize) -> %u64 { while (true) { const tag_id = %return st.self_exe_stream.readByte(); - if (tag_id == DW.TAG_compile_unit) { - - } else { - - } + // TODO iterate until we find the relevant compile unit } } |
