avoid null section name and zero alignment; enforce record === line

modified:   linker.cpp
	modified:   linker.h
This commit is contained in:
John Reiser
2016-11-19 17:38:23 -08:00
parent 134b829d59
commit 9e1631ad4f
2 changed files with 40 additions and 36 deletions
+3 -3
View File
@@ -66,9 +66,9 @@ protected:
bool reloc_done;
protected:
void preprocessSections(char *start, char *end);
void preprocessSymbols(char *start, char *end);
void preprocessRelocations(char *start, char *end);
void preprocessSections(char *start, char const *end);
void preprocessSymbols(char *start, char const *end);
void preprocessRelocations(char *start, char const *end);
Section *findSection(const char *name, bool fatal=true) const;
Symbol *findSymbol(const char *name, bool fatal=true) const;