This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: Fix typo in documentation



This patch fixes a typo in the documentation for extended asms.

Applied under obvious-fix rule on the mainline and branch.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

2001-04-30  Mark Mitchell  <mark@codesourcery.com>

	* extend.texi (extended asm): Fix typo.

Index: gcc/extend.texi
===================================================================
RCS file: /cvs/gcc/gcc/gcc/extend.texi,v
retrieving revision 1.92.2.5
diff -c -p -r1.92.2.5 extend.texi
*** extend.texi	2001/04/28 11:36:24	1.92.2.5
--- extend.texi	2001/04/30 14:37:28
***************
*** 1,4 ****
! @c Copyright (C) 1988,89,92,93,94,96,98,99,2000,01 Free Software Foundation, Inc.
  @c This is part of the GCC manual.
  @c For copying conditions, see the file gcc.texi.
  
--- 1,4 ----
! @c Copyright (C) 1988,1989,1992,1993,1994,1996,1998,1999,2000,2001 Free Software Foundation, Inc.
  @c This is part of the GCC manual.
  @c For copying conditions, see the file gcc.texi.
  
*************** memory, you should write the @code{volat
*** 3059,3065 ****
  versions of GNU CC from moving the instruction around within a core
  region.
  
! An @code{asm} instruction without any operands or clobbers (and ``old
  style'' @code{asm}) will not be deleted or moved significantly,
  regardless, unless it is unreachable, the same way as if you had
  written a @code{volatile} keyword.
--- 3059,3065 ----
  versions of GNU CC from moving the instruction around within a core
  region.
  
! An @code{asm} instruction without any operands or clobbers (an ``old
  style'' @code{asm}) will not be deleted or moved significantly,
  regardless, unless it is unreachable, the same way as if you had
  written a @code{volatile} keyword.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]