aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2010-04-29 16:29:10 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2010-04-29 09:29:10 -0700
commit55040b34cd2888f14e0ae0566d6d193572284341 (patch)
treef52d5d8e1160a7cbde1a731e8b9916ccb92177d2 /gcc
parent46e70c4ead6b119b07fde234427b6911c2e6816d (diff)
downloadgcc-55040b34cd2888f14e0ae0566d6d193572284341.zip
gcc-55040b34cd2888f14e0ae0566d6d193572284341.tar.gz
gcc-55040b34cd2888f14e0ae0566d6d193572284341.tar.bz2
Move flag_plugin_added out of invoke_plugin_callbacks.
2010-04-29 H.J. Lu <hongjiu.lu@intel.com> PR bootstrap/43935 * plugin.h (flag_plugin_added): Moved out of invoke_plugin_callbacks. From-SVN: r158905
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/plugin.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5daa045..23f10f3 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2010-04-29 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR bootstrap/43935
+ * plugin.h (flag_plugin_added): Moved out of
+ invoke_plugin_callbacks.
+
2010-04-29 Richard Guenther <rguenther@suse.de>
PR bootstrap/43935
diff --git a/gcc/plugin.h b/gcc/plugin.h
index 94663dd..3269641 100644
--- a/gcc/plugin.h
+++ b/gcc/plugin.h
@@ -35,6 +35,8 @@ extern void print_plugins_versions (FILE *file, const char *indent);
extern void print_plugins_help (FILE *file, const char *indent);
extern void finalize_plugins (void);
+extern bool flag_plugin_added;
+
/* Called from inside GCC. Invoke all plugin callbacks registered with
the specified event.
Return PLUGEVT_SUCCESS if at least one callback was called,
@@ -49,8 +51,6 @@ invoke_plugin_callbacks (int event ATTRIBUTE_UNUSED,
{
#ifdef ENABLE_PLUGIN
/* True iff at least one plugin has been added. */
- extern bool flag_plugin_added;
-
if (flag_plugin_added)
return invoke_plugin_callbacks_full (event, gcc_data);
#endif