This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [libcpp] patch: add used callback


Arnaud Charlet wrote:
Index: include/cpplib.h
===================================================================
--- include/cpplib.h    (revision 153897)
+++ include/cpplib.h    (working copy)
@@ -508,6 +508,10 @@ struct cpp_callbacks
   /* Called before #define and #undef or other macro definition
      changes are processed.  */
   void (*before_define) (cpp_reader *);
+  /* Called whenever a macro is expanded or tested.
+     Note: this callback is not called when a #define/#undef directive is
+     processed, consider used_define or used_undef instead.  */
+  void (*used) (cpp_reader *, unsigned int, cpp_hashnode *);

Then please document a little bit more the role of the 2 last arguments in your comment.


Regards.


-- Basile STARYNKEVITCH http://starynkevitch.net/Basile/ email: basile<at>starynkevitch<dot>net mobile: +33 6 8501 2359 8, rue de la Faiencerie, 92340 Bourg La Reine, France *** opinions {are only mines, sont seulement les miennes} ***


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]