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

📄 eb132.c

📁 linux下编程用 编译软件
💻 C
字号:
// { dg-do assemble  }// { dg-options "-O -Wall  -fgcse -frerun-loop-opt" }// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de> // Reported against EGCS snaps 98/06/28.//// Compilation of this program with the flags g++ -Wall -O -fgcse// -frerun-loop-opt or -O2 produces spurious warnings in the standard// header <std/bastring.h>.//// They vanish if the declaration of a::b is taken out.#include <string>std::string foo();struct a {	void bar();	enum b { c, d };	b theb;	std::string baz;};voida::bar(){	baz += foo() + foo();	baz += foo() + foo() + "foo";}

⌨️ 快捷键说明

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