OSDN Git Service

* extend.texi (__builtin_constant_p): Add missing @smallexample.
authormanfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Jan 1999 12:34:39 +0000 (12:34 +0000)
committermanfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Jan 1999 12:34:39 +0000 (12:34 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24460 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/extend.texi

index 4389bee..ff51b1d 100644 (file)
@@ -2980,6 +2980,7 @@ memory was a critical resource.  If you have some complex calculation,
 you may want it to be folded if it involves constants, but need to call
 a function if it does not.  For example:
 
+@smallexample
 #define Scale_Value(X)  \
   (__builtin_constant_p (X) ? ((X) * SCALE + OFFSET) : Scale (X))
 @end smallexample