aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@s-direktnet.de>1999-01-01 12:34:39 +0000
committerManfred Hollstein <manfred@s-direktnet.de>1999-01-01 12:34:39 +0000
commitde75bd7e3e9a64598d1c33215ea0c743924adec9 (patch)
tree2dc1feb254e457ceece7961121998224ae70ab9b
parent835ae144b79b076536a07b0dfdf477f8085354cb (diff)
* extend.texi (__builtin_constant_p): Add missing @smallexample. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@24460 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/extend.texi1
1 files changed, 1 insertions, 0 deletions
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