aboutsummaryrefslogtreecommitdiff
path: root/std/debug.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-09-08 00:24:48 -0400
committerAndrew Kelley <superjoe30@gmail.com>2016-09-08 00:24:48 -0400
commitd324b1befa6c7f0fd5d18ffe45a98d104a62d8a0 (patch)
tree0258132b13007f3b93cabc2ca54f4d17689e0c2d /std/debug.zig
parentde7e88c38fcaa37c98c2425be341568e8e193ffc (diff)
downloadzig-d324b1befa6c7f0fd5d18ffe45a98d104a62d8a0.tar.gz
zig-d324b1befa6c7f0fd5d18ffe45a98d104a62d8a0.zip
ability to infer parameter types
Diffstat (limited to 'std/debug.zig')
-rw-r--r--std/debug.zig6
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
}
}