?? ssefn-1.c
字號:
/* Test argument passing with SSE and local functions Written by Paolo Bonzini, 25 January 2005 *//* { dg-do compile { target i?86-*-* x86_64-*-* } } *//* { dg-require-effective-target ilp32 } *//* { dg-final { scan-assembler "movss" } } *//* { dg-final { scan-assembler "mulss" } } *//* { dg-final { scan-assembler-not "movsd" } } *//* { dg-final { scan-assembler-not "mulsd" } } *//* { dg-options "-O2 -msse -mfpmath=sse -fno-inline" } */static float xs (void){ return 3.14159265;}float ys (float a){ return xs () * a;}static double xd (void){ return 3.1415926535;}double yd (double a){ return xd () * a;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -