20050824-1.c

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

C
35
字号
/* Make sure that the S/390 specific shift_count_operand   predicate work properly.  *//* { dg-do compile } *//* { dg-options "-O3" } */unsigned long longf (unsigned long long a, unsigned long b){  asm ("" : : : #ifdef __s390x__		"r13", "r14",#endif		"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",                 "r8", "r9", "r10", "r11", "r12");  return a << ((b + 3) & 63);}unsigned long longg (unsigned long long a, char **b , int c, int d, int e, int f){  char buffer [4096];  *b = &buffer[0];  return a << ((unsigned long)&f & 63);}unsigned long longh (unsigned long long a, int b, int c, int d, int e, int f){  return a << (((unsigned long)&f + 3));}

⌨️ 快捷键说明

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