diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-28 19:43:01 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-28 19:43:01 +0000 |
commit | f1ba665bc7a42ad95d018ee8365801564328131f (patch) | |
tree | 8826c209bf4a345f661a8cff151f91eaedca2ba4 /gcc/builtins.c | |
parent | d55129782532b11e985294cb71265e2f2f78a3e8 (diff) | |
download | gcc-f1ba665bc7a42ad95d018ee8365801564328131f.zip gcc-f1ba665bc7a42ad95d018ee8365801564328131f.tar.gz gcc-f1ba665bc7a42ad95d018ee8365801564328131f.tar.bz2 |
builtins.c: Follow spelling conventions.
* builtins.c: Follow spelling conventions.
* cgraph.c: Likewise.
* cpplex.c: Likewise.
* config/arm/arm.c: Likewise.
* config/arm/iwmmxt.md: Likewise.
* config/c4x/c4x-modes.def: Likewise.
* config/c4x/c4x.c: Likewise.
* config/c4x/c4x.h: Likewise.
* config/c4x/c4x.md: Likewise.
* config/i386/i386-interix.h: Likewise.
* config/mips/mips.h: Likewise.
From-SVN: r68648
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 1201f1c..764a4aa 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -242,9 +242,9 @@ get_pointer_alignment (tree exp, unsigned int max_align) way, because it could contain a zero byte in the middle. TREE_STRING_LENGTH is the size of the character array, not the string. - ONLY_VALUE should be non-zero if the result is not going to be emitted + ONLY_VALUE should be nonzero if the result is not going to be emitted into the instruction stream and zero if it is going to be expanded. - E.g. with i++ ? "foo" : "bar", if ONLY_VALUE is non-zero, constant 3 + E.g. with i++ ? "foo" : "bar", if ONLY_VALUE is nonzero, constant 3 is returned, otherwise NULL, since len = c_strlen (src, 1); if (len) expand_expr (len, ...); would not evaluate the side-effects. |