compiler: Pass location to fatal_error.
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 30 Jan 2015 16:04:58 +0000 (16:04 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 30 Jan 2015 16:04:58 +0000 (16:04 +0000)
The GCC function is changing.

The error functions need to move to a compiler-indepent
approach so that changes to the GCC functions are not a
concern here.

From-SVN: r220292

gcc/go/gofrontend/go.cc

index 7850e00..cd30cca 100644 (file)
@@ -63,7 +63,8 @@ go_parse_input_files(const char** filenames, unsigned int filename_count,
        {
          file = fopen(filename, "r");
          if (file == NULL)
-           fatal_error("cannot open %s: %m", filename);
+           fatal_error(Linemap::unknown_location(),
+                       "cannot open %s: %m", filename);
        }
 
       Lex lexer(filename, file, ::gogo->linemap());