diff options
| author | Rui Ueyama <ruiu@google.com> | 2013-08-28 23:49:30 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2013-08-28 23:49:30 +0000 |
| commit | e9236587b0a77267ed3b0e96050195253b11ca39 (patch) | |
| tree | d474818da05a1ad8ec7e07cd002de570552a4164 | |
| parent | 8918920a329506ea76693876cc8f23af145a6aaa (diff) | |
| download | bcm5719-llvm-e9236587b0a77267ed3b0e96050195253b11ca39.tar.gz bcm5719-llvm-e9236587b0a77267ed3b0e96050195253b11ca39.zip | |
[Object/COFF] Add coff_aux_weak_external.
llvm-svn: 189541
| -rw-r--r-- | llvm/include/llvm/Object/COFF.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/include/llvm/Object/COFF.h b/llvm/include/llvm/Object/COFF.h index 21900675ffd..cb464abeeba 100644 --- a/llvm/include/llvm/Object/COFF.h +++ b/llvm/include/llvm/Object/COFF.h @@ -184,6 +184,12 @@ struct coff_relocation { support::ulittle16_t Type; }; +struct coff_aux_weak_external { + support::ulittle32_t TagIndex; + support::ulittle32_t Characteristics; + char Unused[10]; +}; + struct coff_aux_section_definition { support::ulittle32_t Length; support::ulittle16_t NumberOfRelocations; |

