⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pass54-frag.c

📁 linux下编程用 编译软件
💻 C
字号:
struct k {  struct {    int b;    int c;  } a;};static struct k l;static struct k m;void foo (){  /* This should not be instrumented. */   l.a.b = 5;}void bar (){  /* This should not be instrumented. */   m.a.b = 5;}int main (){  /* Force TREE_ADDRESSABLE on "l" only.  */  volatile int *k = & l.a.c;  *k = 8;  __mf_set_options ("-mode-violate");  foo ();  bar ();  __mf_set_options ("-mode-check");}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -