Skip to content
Snippets Groups Projects
Commit e3dfa350 authored by Brad King's avatar Brad King
Browse files

Merge branch 'backport-fix-autodef-bigobj-64' into release

parents 16ba21f7 c7ddc5f4
No related branches found
No related tags found
No related merge requests found
......@@ -425,7 +425,7 @@ DumpFile(const char* filename, FILE *fout)
if(h->Sig1 == 0x0 && h->Sig2 == 0xffff) {
DumpSymbols<cmANON_OBJECT_HEADER_BIGOBJ, cmIMAGE_SYMBOL_EX>
symbolDumper((cmANON_OBJECT_HEADER_BIGOBJ*) lpFileBase, fout,
(dosHeader->e_magic == IMAGE_FILE_MACHINE_AMD64));
(h->Machine == IMAGE_FILE_MACHINE_AMD64));
symbolDumper.DumpObjFile();
} else {
printf("unrecognized file format in '%s'\n", filename);
......
#include <stdio.h>
int sub()
{
printf("");
return 10;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment