optimize4.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 32 行
C
32 行
// { dg-do assemble }// // Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 24 Jul 2001 <nathan@codesourcery.com>// Bug 3543. We forgot to resolve an OFFSET_REFstruct Writeable { bool blocking_mode;};struct Pipe : Writeable { void ewrite(); void set_write_blocking () { if (Writeable::blocking_mode); }};void Pipe::ewrite(){ set_write_blocking();}void ewrite(Pipe &p){ p.set_write_blocking();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?