diff options
author | Basile Starynkevitch <basile@starynkevitch.net> | 2014-03-18 19:16:52 +0000 |
---|---|---|
committer | Basile Starynkevitch <bstarynk@gcc.gnu.org> | 2014-03-18 19:16:52 +0000 |
commit | b318e4049b9e6083495f7b06ef3d3aa6175ac518 (patch) | |
tree | 7fdd1e0bd7f4ead8ef006a246eaa2176aa0e0ac7 /gcc/plugin.def | |
parent | ba2f8afa6b463e261c1d8f1d05d574e92282a603 (diff) | |
download | gcc-b318e4049b9e6083495f7b06ef3d3aa6175ac518.zip gcc-b318e4049b9e6083495f7b06ef3d3aa6175ac518.tar.gz gcc-b318e4049b9e6083495f7b06ef3d3aa6175ac518.tar.bz2 |
plugin.def: Improve comment for PLUGIN_INCLUDE_FILE.
2014-03-18 Basile Starynkevitch <basile@starynkevitch.net>
* plugin.def: Improve comment for PLUGIN_INCLUDE_FILE.
* doc/plugins.texi (Plugin callbacks): Mention
PLUGIN_INCLUDE_FILE.
Italicize plugin event names in description. Explain that
PLUGIN_PRAGMAS has no sense for lto1. Explain
PLUGIN_INCLUDE_FILE.
Remind that no GCC functions should be called after
PLUGIN_FINISH.
Explain what pragmas with expansion are.
From-SVN: r208660
Diffstat (limited to 'gcc/plugin.def')
-rw-r--r-- | gcc/plugin.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/plugin.def b/gcc/plugin.def index 0151fdc..df5d383 100644 --- a/gcc/plugin.def +++ b/gcc/plugin.def @@ -92,8 +92,8 @@ DEFEVENT (PLUGIN_EARLY_GIMPLE_PASSES_END) /* Called when a pass is first instantiated. */ DEFEVENT (PLUGIN_NEW_PASS) -/* Called when a file is #include-d or given thru #line directive. - Could happen many times. The event data is the included file path, +/* Called when a file is #include-d or given via the #line directive. + this could happen many times. The event data is the included file path, as a const char* pointer. */ DEFEVENT (PLUGIN_INCLUDE_FILE) |