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

📄 inline_asm-1.c

📁 Mac OS X 10.4.9 for x86 Source Code gcc 实现源代码
💻 C
字号:
/* { dg-do compile } *//* { dg-options "-O1 -fdump-tree-optimized -fdump-tree-alias1-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"} } *//* There should a V_MAY_DEF for the inline-asm.  *//* { dg-final { scan-tree-dump-times "V_MAY_DEF" 1 "alias1"} } */

⌨️ 快捷键说明

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