inline_asm-1.c

来自「用于进行gcc测试」· C语言 代码 · 共 21 行

C
21
字号
/* { dg-do compile } *//* { dg-options "-O1 -fdump-tree-optimized -fdump-tree-salias-vops" } *//* Test to make sure that inline-asm causes a V_MAY_DEF and that we call test_function twice. */char test_function(void ) __attribute__((__pure__));char f(char *a){  char b = test_function();  asm("":"=m"(*a):"r"(b));  b = test_function();  return b;}/* test_function should be called twice as the inline-asm changes memory. *//* { dg-final { scan-tree-dump-times "test_function" 2 "optimized"} } *//* { dg-final { cleanup-tree-dump "optimized" } } *//* There should a VDEF for the inline-asm.  *//* { dg-final { scan-tree-dump-times "VDEF" 1 "salias"} } *//* { dg-final { cleanup-tree-dump "salias" } } */

⌨️ 快捷键说明

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