diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-06-19 21:36:54 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-08-26 00:34:40 -0400 |
| commit | 2bd6c60752bbfc568c1fdf358a68480ddd437def (patch) | |
| tree | 3b1f35ab36514b37a46445bdff961b2a276674b9 /std | |
| parent | 6aa04c422bae89c50e1289e1ca51cd4d414debb7 (diff) | |
| download | zig-2bd6c60752bbfc568c1fdf358a68480ddd437def.tar.gz zig-2bd6c60752bbfc568c1fdf358a68480ddd437def.zip | |
update for llvm 5.0.0rc1
Diffstat (limited to 'std')
| -rw-r--r-- | std/debug.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/std/debug.zig b/std/debug.zig index f147e91324..922a72e11c 100644 --- a/std/debug.zig +++ b/std/debug.zig @@ -147,6 +147,9 @@ pub fn writeStackTrace(out_stream: &io.OutStream, allocator: &mem.Allocator, tty builtin.ObjectFormat.macho => { %return out_stream.write("(stack trace unavailable for Mach-O object format)\n"); }, + builtin.ObjectFormat.wasm => { + %return out_stream.write("(stack trace unavailable for WASM object format)\n"); + }, builtin.ObjectFormat.unknown => { %return out_stream.write("(stack trace unavailable for unknown object format)\n"); }, |
