Browse Source

gold/

* fileread.cc (Input_file::Input_file): New constructor.
	* fileread.h (class Input_file): Add new constructor.
gdb_7_6-branch
Cary Coutant 14 years ago
parent
commit
effe83657d
  1. 5
      gold/ChangeLog
  2. 10
      gold/fileread.cc
  3. 3
      gold/fileread.h

5
gold/ChangeLog

@ -1,3 +1,8 @@
2012-10-23 Cary Coutant <ccoutant@google.com>
* fileread.cc (Input_file::Input_file): New constructor.
* fileread.h (class Input_file): Add new constructor.
2012-10-18 Alan Modra <amodra@gmail.com>
PR gold/14727

10
gold/fileread.cc

@ -856,6 +856,16 @@ File_view::~File_view()
// Class Input_file.
// Create a file given just the filename.
Input_file::Input_file(const char* name)
: found_name_(), file_(), is_in_sysroot_(false), format_(FORMAT_NONE)
{
this->input_argument_ =
new Input_file_argument(name, Input_file_argument::INPUT_FILE_TYPE_FILE,
"", false, Position_dependent_options());
}
// Create a file for testing.
Input_file::Input_file(const Task* task, const char* name,

3
gold/fileread.h

@ -493,6 +493,9 @@ class Input_file
is_in_sysroot_(false), format_(FORMAT_NONE)
{ }
// Create an input file given just a filename.
Input_file(const char* name);
// Create an input file with the contents already provided. This is
// only used for testing. With this path, don't call the open
// method.

Loading…
Cancel
Save