extend.texi (__builtin_constant_p): Add missing @smallexample.

* extend.texi (__builtin_constant_p): Add missing @smallexample.

From-SVN: r24460
This commit is contained in:
Manfred Hollstein 1999-01-01 12:34:39 +00:00
parent 1048777fdf
commit 4d39051857

View 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