20050111-1.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 25 行

C
25
字号
/* PR middle-end/19084, rtl-optimization/19348 *//* { dg-do compile } *//* The following ensures that this test is compiled with -O2, unless   on i?86 or x86_64 with -m32 option.  *//* { dg-options "-O2" } *//* { dg-options "-O2 -march=i686" { target i?86-*-* x86_64-*-* } } *//* { dg-options "-O2" { target lp64 } } */unsigned intfoo (unsigned long long x){  unsigned int u;  if (x == 0)    return 0;  u = (unsigned int) (x >> 32);  return u;}unsigned long longbar (unsigned short x){  return (unsigned long long) x << 32;}

⌨️ 快捷键说明

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