Commit ce888a99 by Thomas Schwinge Committed by Thomas Schwinge

nvptx mkoffload: Initialize GCC diagnostic machinery before using it.

	gcc/
	* config/nvptx/mkoffload.c: Include "diagnostic.h" instead of
	"diagnostic-core.h".
	(main): Initialize progname, and call diagnostic_initialize.

From-SVN: r220621
parent 9584e638
2015-02-11 Thomas Schwinge <thomas@codesourcery.com>
* config/nvptx/mkoffload.c: Include "diagnostic.h" instead of
"diagnostic-core.h".
(main): Initialize progname, and call diagnostic_initialize.
* config/nvptx/mkoffload.c (process): Refer to __OFFLOAD_TABLE__
instead of __OPENMP_TARGET__.
......
......@@ -33,7 +33,7 @@
#include "intl.h"
#include <libgen.h>
#include "obstack.h"
#include "diagnostic-core.h"
#include "diagnostic.h"
#include "collect-utils.h"
#include "gomp-constants.h"
......@@ -828,6 +828,9 @@ main (int argc, char **argv)
FILE *out = stdout;
const char *outname = 0;
progname = "mkoffload";
diagnostic_initialize (global_dc, 0);
char *collect_gcc = getenv ("COLLECT_GCC");
if (collect_gcc == NULL)
fatal_error (input_location, "COLLECT_GCC must be set.");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment