pr30738.c

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

C
18
字号
/* { dg-do compile } *//* { dg-options "-O -fdump-tree-phiopt1" } */template <class T>static inline const T&min_ref (const T &x, const T &y){  return x < y ? x : y;}int test_min_ref (int x, int y){  return min_ref (x, y);}/* { dg-final { scan-tree-dump "MIN_EXPR" "phiopt1" } } *//* { dg-final { cleanup-tree-dump "phiopt1" } } */

⌨️ 快捷键说明

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