diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64e3421c4d1..9eb07175493 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-09-04 Dodji Seketeli + + * tree.h (DECL_BUILT_IN): Fix typo in comment. + 2013-09-04 David Edelsohn * config/rs6000/rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): Only emit diff --git a/gcc/tree.h b/gcc/tree.h index 88d527ac89e..2d11aa30173 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2494,7 +2494,7 @@ extern vec **decl_debug_args_insert (tree); recognized by optimizers and expanders. Note that it is different from the DECL_IS_BUILTIN accessor. For - instance, user declarated prototypes of C library functions are not + instance, user declared prototypes of C library functions are not DECL_IS_BUILTIN but may be DECL_BUILT_IN. */ #define DECL_BUILT_IN(NODE) (DECL_BUILT_IN_CLASS (NODE) != NOT_BUILT_IN)