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

📄 loop1.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// Verify that loop optimization takes into account the exception edge// and does not increment I before the call.// { dg-do run }// { dg-options "-O2" }extern "C" void abort();static void bar(char *);static void foo(unsigned long element_count, char *ptr){  unsigned long i;  try {    for (i = 0; i != element_count; i++, ptr += 8)      bar (ptr);  }  catch (...) {    if (i)      abort ();  }}static void bar(char *){  throw 1;}int main(){  foo(2, 0);}

⌨️ 快捷键说明

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