diff options
Diffstat (limited to 'subx/021translate.cc')
-rw-r--r-- | subx/021translate.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/021translate.cc b/subx/021translate.cc index 6d0fb899..f658f6db 100644 --- a/subx/021translate.cc +++ b/subx/021translate.cc @@ -34,9 +34,9 @@ void perform_all_transforms(string& program) { void dump_elf(const string& program, const char* filename) { initialize_mem(); // load program into memory, filtering out comments - load_program(program, 1); // Not where 'program' should be loaded for running. - // But we're not going to run it right now, so we - // can load it anywhere. + load_program(program); // Not where 'program' should be loaded for running. + // But we're not going to run it right now, so we + // can load it anywhere. // dump contents of memory into ELF binary ofstream out(filename, ios::binary); dump_elf_header(out); |