sim: callback: fix sentinel testing when walking maps
[deliverable/binutils-gdb.git] / gold / script.cc
index 5350afc6ad432e1264de28dab52fbd8a50e5e933..56f126c738a047f6e0c2e0d2c9fb030c3bcc4b1f 100644 (file)
@@ -3366,13 +3366,14 @@ script_parse_memory_attr(void* closurev, const char* attrs, size_t attrlen,
 }
 
 extern "C" void
-script_include_directive(void* closurev, const char* filename, size_t length)
+script_include_directive(int first_token, void* closurev,
+                        const char* filename, size_t length)
 {
   Parser_closure* closure = static_cast<Parser_closure*>(closurev);
   std::string name(filename, length);
   Command_line* cmdline = closure->command_line();
   read_script_file(name.c_str(), cmdline, &cmdline->script_options(),
-                   PARSING_LINKER_SCRIPT, Lex::LINKER_SCRIPT);
+                   first_token, Lex::LINKER_SCRIPT);
 }
 
 // Functions for memory regions.
This page took 0.023781 seconds and 4 git commands to generate.