asm-1.c
来自「用于进行gcc测试」· C语言 代码 · 共 18 行
C
18 行
/* Make sure that gcc understands that an in/out operand is a use as well as a def. *//* { dg-do compile } *//* { dg-options "-O -fdump-tree-optimized" } */void f(){ int i = 42; int j = 63; asm ("": "=m"(i), "+r"(j) : "m"(i));}/* { dg-final { scan-tree-dump-times "42" 1 "optimized" } } *//* { dg-final { scan-tree-dump-times "63" 1 "optimized" } } *//* { dg-final { cleanup-tree-dump "optimized" } } */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?