diff options
author | Sam Clegg <sbc@chromium.org> | 2018-02-27 23:57:37 +0000 |
---|---|---|
committer | Sam Clegg <sbc@chromium.org> | 2018-02-27 23:57:37 +0000 |
commit | 86b4a09a99b689f9717bd17cabd850857a53388d (patch) | |
tree | 260b68ecf7adf33be82da0880e0aa8109820296f /llvm/test/ObjectYAML | |
parent | 48a533d005d1de74e680896be8124b950b12f6fc (diff) | |
download | bcm5719-llvm-86b4a09a99b689f9717bd17cabd850857a53388d.tar.gz bcm5719-llvm-86b4a09a99b689f9717bd17cabd850857a53388d.zip |
[WebAssembly] Remove DataSize from linking metadata section
Neither the linker nor the runtime need this information
anymore. We were originally using this to model BSS size
but the plan is now to use the segment metadata to allow
for BSS segments.
Differential Revision: https://reviews.llvm.org/D41366
llvm-svn: 326267
Diffstat (limited to 'llvm/test/ObjectYAML')
-rw-r--r-- | llvm/test/ObjectYAML/wasm/linking_section.yaml | 2 | ||||
-rw-r--r-- | llvm/test/ObjectYAML/wasm/weak_symbols.yaml | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/llvm/test/ObjectYAML/wasm/linking_section.yaml b/llvm/test/ObjectYAML/wasm/linking_section.yaml index 818d7038547..0c2c86404ae 100644 --- a/llvm/test/ObjectYAML/wasm/linking_section.yaml +++ b/llvm/test/ObjectYAML/wasm/linking_section.yaml @@ -29,7 +29,6 @@ Sections: Content: '11110000' - Type: CUSTOM Name: linking - DataSize: 999 SymbolTable: - Index: 0 Kind: FUNCTION @@ -51,7 +50,6 @@ Sections: ... # CHECK: - Type: CUSTOM # CHECK-NEXT: Name: linking -# CHECK-NEXT: DataSize: 999 # CHECK-NEXT: SymbolTable: # CHECK-NEXT: - Index: 0 # CHECK-NEXT: Kind: FUNCTION diff --git a/llvm/test/ObjectYAML/wasm/weak_symbols.yaml b/llvm/test/ObjectYAML/wasm/weak_symbols.yaml index 696b14bbeae..3957caae74f 100644 --- a/llvm/test/ObjectYAML/wasm/weak_symbols.yaml +++ b/llvm/test/ObjectYAML/wasm/weak_symbols.yaml @@ -36,7 +36,6 @@ Sections: Body: 00 - Type: CUSTOM Name: linking - DataSize: 10 SymbolTable: - Index: 0 Kind: FUNCTION @@ -63,7 +62,6 @@ Sections: # CHECK: Index: 0 # CHECK: - Type: CUSTOM # CHECK: Name: linking -# CHECK: DataSize: 10 # CHECK: SymbolTable: # CHECK: - Index: 0 # CHECK: Kind: FUNCTION |