mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-28 16:11:29 +00:00
[WebAssembly] Don't generate empty type sections.
Differential Revision: https://reviews.llvm.org/D61991 llvm-svn: 360940
This commit is contained in:
parent
9adabefdce
commit
1a53ff2a13
@ -49,3 +49,13 @@ Sections:
|
||||
# RELOC-NEXT: Offset: 0x0000000B
|
||||
# RELOC-NEXT: Addend: 3
|
||||
# RELOC-NEXT: Name: green
|
||||
#
|
||||
# RELOC: SymbolTable:
|
||||
# RELOC-NEXT: - Index: 0
|
||||
# RELOC-NEXT: Kind: SECTION
|
||||
# RELOC-NEXT: Flags: [ BINDING_LOCAL ]
|
||||
# RELOC-NEXT: Section: 2
|
||||
# RELOC-NEXT: - Index: 1
|
||||
# RELOC-NEXT: Kind: SECTION
|
||||
# RELOC-NEXT: Flags: [ BINDING_LOCAL ]
|
||||
# RELOC-NEXT: Section: 3
|
||||
|
@ -234,6 +234,8 @@ void Writer::createImportSection() {
|
||||
}
|
||||
|
||||
void Writer::createTypeSection() {
|
||||
if (!Types.size())
|
||||
return;
|
||||
SyntheticSection *Section = createSyntheticSection(WASM_SEC_TYPE);
|
||||
raw_ostream &OS = Section->getStream();
|
||||
writeUleb128(OS, Types.size(), "type count");
|
||||
|
Loading…
Reference in New Issue
Block a user