From 1328049a7b22f897060faf771ac3114dc0a16d14 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 13 Apr 2011 04:02:26 +0000 Subject: [PATCH] In gcc/objc/: 2011-04-13 Nicola Pero In gcc/objc/: 2011-04-13 Nicola Pero * objc-act.c (build_keyword_selector): Use get_identifier_with_length instead of get_identifier. From-SVN: r172360 --- gcc/objc/ChangeLog | 5 +++++ gcc/objc/objc-act.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index caceac12b5b..c2f67694cff 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,8 @@ +2011-04-13 Nicola Pero + + * objc-act.c (build_keyword_selector): Use get_identifier_with_length + instead of get_identifier. + 2011-04-12 Nathan Froyd * objc-lang.c (objc_init_ts): Move code for this function... diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 13eef24d04d..419462131af 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -4668,7 +4668,7 @@ build_keyword_selector (tree selector) strcat (buf, ":"); } - return get_identifier (buf); + return get_identifier_with_length (buf, len); } /* Used for declarations and definitions. */ -- 2.11.4.GIT