⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ultrasp9.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
/* PR optimization/11018 *//* Originator: <partain@dcs.gla.ac.uk> *//* { dg-do run { target sparc*-*-* } } *//* { dg-options "-O2 -mcpu=ultrasparc" } *//* This used to fail on 32-bit Ultrasparc because   of broken DImode shift patterns.  */extern void abort(void);typedef unsigned long long uint64_t;typedef unsigned int size_t;void to_octal (uint64_t value, char *where, size_t size){  uint64_t v = value;  size_t i = size;  do    {      where[--i] = '0' + (v & ((1 << 3) - 1));      v >>= 3;    }  while (i);}int main (void){  char buf[8];  to_octal(010644, buf, 6);  if (buf[1] != '1')     abort();  return 0;}

⌨️ 快捷键说明

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