We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
v -skip-unused -cc tcc examples/hello_world.v
1 parent 3009373 commit c41ff72Copy full SHA for c41ff72
vlib/builtin/backtraces_nix.c.v
@@ -19,6 +19,7 @@ pub fn print_backtrace_skipping_top_frames(xskipframes int) bool {
19
20
// the functions below are not called outside this file,
21
// so there is no need to have their twins in builtin_windows.v
22
+@[direct_array_access]
23
fn print_backtrace_skipping_top_frames_bsd(skipframes int) bool {
24
$if no_backtrace ? {
25
return false
@@ -37,6 +38,7 @@ fn print_backtrace_skipping_top_frames_bsd(skipframes int) bool {
37
38
}
39
40
fn C.tcc_backtrace(fmt &char) int
41
42
fn print_backtrace_skipping_top_frames_linux(skipframes int) bool {
43
$if android {
44
eprintln('On Android no backtrace is available.')
0 commit comments