In gcc/objc/: 2011-04-13 Nicola Pero <nicola.pero@meta-innovation.com>
authorNicola Pero <nicola.pero@meta-innovation.com>
Wed, 13 Apr 2011 04:02:26 +0000 (04:02 +0000)
committerNicola Pero <nicola@gcc.gnu.org>
Wed, 13 Apr 2011 04:02:26 +0000 (04:02 +0000)
In gcc/objc/:
2011-04-13  Nicola Pero  <nicola.pero@meta-innovation.com>

* objc-act.c (build_keyword_selector): Use get_identifier_with_length
instead of get_identifier.

From-SVN: r172360

gcc/objc/ChangeLog
gcc/objc/objc-act.c

index caceac12b5b047cb48c80650e1e90f3b3fb79a13..c2f67694cff49a4364c6db3ba9ed947891fe181e 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-13  Nicola Pero  <nicola.pero@meta-innovation.com>
+
+       * objc-act.c (build_keyword_selector): Use get_identifier_with_length
+       instead of get_identifier.
+
 2011-04-12  Nathan Froyd  <froydnj@codesourcery.com>
 
        * objc-lang.c (objc_init_ts): Move code for this function...
index 13eef24d04dd0d153f6f4d2d17519458ca22eb16..419462131af90ce94784fc012337c24b5e85a0c1 100644 (file)
@@ -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.  */