aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>2006-03-14 12:36:29 -0500
committerJason Merrill <jason@gcc.gnu.org>2006-03-14 12:36:29 -0500
commit69d1a403420aea41cd6ce81087e1e388c571118e (patch)
tree0aa85354b9c3198028817ff442e7b1fd0a354817 /gcc
parente1835ff189fb2a103508889f0c7450075c28a86e (diff)
downloadgcc-69d1a403420aea41cd6ce81087e1e388c571118e.zip
gcc-69d1a403420aea41cd6ce81087e1e388c571118e.tar.gz
gcc-69d1a403420aea41cd6ce81087e1e388c571118e.tar.bz2
tweak comments
From-SVN: r112059
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/typeck.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c
index f94f095..f68b484 100644
--- a/gcc/cp/typeck.c
+++ b/gcc/cp/typeck.c
@@ -1309,7 +1309,7 @@ cxx_sizeof_expr (tree e)
}
/* Implement the __alignof keyword: Return the minimum required
- alignment of EXPR, measured in bytes. For VAR_DECL's and
+ alignment of E, measured in bytes. For VAR_DECL's and
FIELD_DECL's return DECL_ALIGN (which can be set from an
"aligned" __attribute__ specification). */
@@ -1359,8 +1359,8 @@ cxx_alignof_expr (tree e)
return fold_convert (size_type_node, t);
}
-/* Process a sizeof or alignof expression where the operand is an
- expression. */
+/* Process a sizeof or alignof expression E with code OP where the operand
+ is an expression. */
tree
cxx_sizeof_or_alignof_expr (tree e, enum tree_code op)