From: Manfred Hollstein Date: Fri, 1 Jan 1999 12:34:39 +0000 (+0000) Subject: extend.texi (__builtin_constant_p): Add missing @smallexample. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d39051857244864fc7a2d8e3df92000242548ff;p=gcc.git extend.texi (__builtin_constant_p): Add missing @smallexample. * extend.texi (__builtin_constant_p): Add missing @smallexample. From-SVN: r24460 --- diff --git a/gcc/extend.texi b/gcc/extend.texi index 4389bee4583..ff51b1d1002 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -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