eb132.c

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

C
29
字号
// { 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 + =
减小字号Ctrl + -
显示快捷键?