Commit 4d390518 by Manfred Hollstein

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

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

From-SVN: r24460
parent 1048777f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment