lazy-binding-1.c

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

C
22
字号
/* { dg-do compile { target nomips16 } } *//* { dg-mips-options "-mabicalls -mshared -mexplicit-relocs -O2 -fno-delayed-branch" } */void bar (void);voidfoo (int n){  while (n--)    {      bar ();      bar ();    }}/* There should be exactly five uses of $25: one to set up $gp, two to   load the address of bar (), and two to call it.  *//* { dg-final { scan-assembler-times "\tl.\t\\\$25,%call16\\\(bar\\\)" 2 } } *//* { dg-final { scan-assembler-times "\tjalr\t\\\$25" 2 } } *//* { dg-final { scan-assembler "(\\\$28,|\t.cpload\t)\\\$25" } } *//* { dg-final { scan-assembler-times "\\\$25" 5 } } */

⌨️ 快捷键说明

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