extend.texi (__builtin_constant_p): Add missing @smallexample.
authorManfred Hollstein <manfred@gcc.gnu.org>
Fri, 1 Jan 1999 12:34:39 +0000 (12:34 +0000)
committerManfred Hollstein <manfred@gcc.gnu.org>
Fri, 1 Jan 1999 12:34:39 +0000 (12:34 +0000)
* extend.texi (__builtin_constant_p): Add missing @smallexample.

From-SVN: r24460

gcc/extend.texi

index 4389bee4583834ce53a101a5f5de3e7f4eb044b5..ff51b1d10025f7ac53b4e3df99d23385d60becde 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