📄 debug-5.c
字号:
/* This testcase failed, because scope containing baz was deleted (spanned 0 basic blocks) and DWARF-2 couldn't find baz origin. *//* { dg-do compile } */extern void abort (void);struct A { char *a, *b, *c, *d; };static intbar (struct A *x){ return x->c - x->b;}static intbar2 (struct A *x){ int a = x->c - x->b; x->c += 26; return a;}void fnptr (void (*fn) (void));voidfoo (void){ struct A e; if (bar2 (&e) < 0) abort (); { void baz (void) { bar (&e); } fnptr (baz); } { struct A *f; f = &e; if (f->c - f->a > f->d - f->a) f->c = f->d; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -