diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2015-02-17 19:24:07 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2015-02-17 19:24:07 +0100 |
commit | a2818955d7a57e099a02eb7291cfc13bf35c4fa9 (patch) | |
tree | 41a55ed4b7b1f62db227a785de2481f13edc6208 | |
parent | 6f3c1d38bf9cd954a1e9747bcd2c711736b82fb6 (diff) | |
download | gcc-a2818955d7a57e099a02eb7291cfc13bf35c4fa9.zip gcc-a2818955d7a57e099a02eb7291cfc13bf35c4fa9.tar.gz gcc-a2818955d7a57e099a02eb7291cfc13bf35c4fa9.tar.bz2 |
libgomp: Make GOMP_PLUGIN_debug actually work...
libgomp/
* libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo.
From-SVN: r220770
-rw-r--r-- | libgomp/ChangeLog | 4 | ||||
-rw-r--r-- | libgomp/libgomp-plugin.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 2c32d9e..8477c3b 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,4 +1,8 @@ 2015-02-17 Thomas Schwinge <thomas@codesourcery.com> + + * libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo. + +2015-02-17 Thomas Schwinge <thomas@codesourcery.com> Cesar Philippidis <cesar@codesourcery.com> * oacc-ptx.h (GOACC_INTERNAL_PTX): Add GOACC_tid, GOACC_ntid, diff --git a/libgomp/libgomp-plugin.c b/libgomp/libgomp-plugin.c index ffb22e9..f448ba9 100644 --- a/libgomp/libgomp-plugin.c +++ b/libgomp/libgomp-plugin.c @@ -55,7 +55,7 @@ GOMP_PLUGIN_debug (int kind, const char *msg, ...) va_list ap; va_start (ap, msg); - gomp_debug (kind, msg, ap); + gomp_vdebug (kind, msg, ap); va_end (ap); } |