diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-02-15 13:39:08 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-02-15 13:39:08 +0000 |
commit | cff9fdbd945d3f40c8c10d3eb36f7680ecaa3e2e (patch) | |
tree | a08e44958b88667df1671c1869b5b78a9b42b941 | |
parent | Fix printing of x86_64 registers from minidump_stackwalk (diff) | |
download | breakpad-cff9fdbd945d3f40c8c10d3eb36f7680ecaa3e2e.tar.xz |
enable writing INFO CODE_ID line in symbol files
R=mark (originally from http://breakpad.appspot.com/180001)
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@773 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | src/common/windows/pdb_source_line_writer.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/windows/pdb_source_line_writer.cc b/src/common/windows/pdb_source_line_writer.cc index 9969530b..c0415d00 100644 --- a/src/common/windows/pdb_source_line_writer.cc +++ b/src/common/windows/pdb_source_line_writer.cc @@ -799,10 +799,8 @@ bool PDBSourceLineWriter::WriteMap(FILE *map_file) { output_ = map_file; bool ret = PrintPDBInfo(); - // TODO(ted): This is currently disabled to allow Breakpad users to update - // processing infrastructure. // This is not a critical piece of the symbol file. - // PrintPEInfo(); + PrintPEInfo(); ret = ret && PrintSourceFiles() && PrintFunctions() && |