aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@gcc.gnu.org>1999-01-01 12:34:39 +0000
committerManfred Hollstein <manfred@gcc.gnu.org>1999-01-01 12:34:39 +0000
commit4d39051857244864fc7a2d8e3df92000242548ff (patch)
tree2dc1feb254e457ceece7961121998224ae70ab9b
parent1048777fdf742819b9a28e5ea9beef425ebc1e06 (diff)
downloadgcc-4d39051857244864fc7a2d8e3df92000242548ff.zip
gcc-4d39051857244864fc7a2d8e3df92000242548ff.tar.gz
gcc-4d39051857244864fc7a2d8e3df92000242548ff.tar.bz2
extend.texi (__builtin_constant_p): Add missing @smallexample.
* extend.texi (__builtin_constant_p): Add missing @smallexample. From-SVN: r24460
-rw-r--r--gcc/extend.texi1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/extend.texi b/gcc/extend.texi
index 4389bee..ff51b1d 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