From: Manfred Hollstein Date: Fri, 1 Jan 1999 12:34:39 +0000 (+0000) Subject: extend.texi (__builtin_constant_p): Add missing @smallexample. X-Git-Tag: prereleases/libgcj-0.1~1513 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d39051857244864fc7a2d8e3df92000242548ff;p=thirdparty%2Fgcc.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 4389bee45838..ff51b1d10025 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