pr17692.c

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

C
22
字号
/* { dg-do compile } *//* { dg-options "-O -mfpmath=sse -msse2" } *//* The fact that t1 and t2 are uninitialized is critical.  With them   uninitialized, the register allocator is free to put them in the same   hard register, which results in	xmm0 = xmm0 >= xmm0 ? xmm0 : xmm0   Which is of course a nop, but one for which we would ICE splitting the   pattern.  */   double out;static void foo(void){    double t1, t2, t3, t4;        t4 = t1 >= t2 ? t1 : t2;    t4 = t4 >= t3 ? t4 : t3;    out = t4;}

⌨️ 快捷键说明

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