Skip to content

Commit

Permalink
Object/COFF: Fix padding between CSDVersion and EditList.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201756 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
rui314 committed Feb 20, 2014
1 parent 7855486 commit 81e59b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/llvm/Object/COFF.h
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ struct coff_load_configuration32 {
support::ulittle32_t ProcessAffinityMask;
support::ulittle32_t ProcessHeapFlags;
support::ulittle16_t CSDVersion;
char Reserved[4];
uint16_t Reserved;
support::ulittle32_t EditList;
support::ulittle32_t SecurityCookie;
support::ulittle32_t SEHandlerTable;
Expand Down
6 changes: 3 additions & 3 deletions test/tools/llvm-objdump/coff-private-headers.test
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ LOADCFG-NEXT: Virtual Memory Threshold: 0
LOADCFG-NEXT: Process Affinity Mask: 0
LOADCFG-NEXT: Process Heap Flags: 0
LOADCFG-NEXT: CSD Version: 0
LOADCFG-NEXT: Security Cookie: 554696768
LOADCFG-NEXT: SEH Table: 65600
LOADCFG-NEXT: SEH Count: 0
LOADCFG-NEXT: Security Cookie: 4206616
LOADCFG-NEXT: SEH Table: 4202768
LOADCFG-NEXT: SEH Count: 1

0 comments on commit 81e59b5

Please sign in to comment.