1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/MC/WebAssembly/custom-sections.ll
Andy Wingo 8edc77a020 [MC][WebAssembly] Only emit indirect function table import if needed
The indirect function table, synthesized by the linker, is needed if and
only if there are TABLE_INDEX relocs.

Differential Revision: https://reviews.llvm.org/D91637
2020-11-25 08:38:43 -08:00

33 lines
732 B
LLVM

; RUN: llc -filetype=obj %s -o - | llvm-readobj -S - | FileCheck %s
; Test the mechanism for defining user custom sections.
target triple = "wasm32-unknown-unknown"
!0 = !{ !"red", !"foo" }
!1 = !{ !"green", !"bar" }
!2 = !{ !"green", !"qux" }
!wasm.custom_sections = !{ !0, !1, !2 }
!3 = !{ !"clang version 123"}
!llvm.ident = !{!3}
; CHECK: Section {
; CHECK: Type: CUSTOM (0x0)
; CHECK: Size: 3
; CHECK: Offset: 38
; CHECK: Name: red
; CHECK: }
; CHECK: Section {
; CHECK: Type: CUSTOM (0x0)
; CHECK: Size: 6
; CHECK: Offset: 51
; CHECK: Name: green
; CHECK: }
; CHECK: Section {
; CHECK: Type: CUSTOM (0x0)
; CHECK: Size: 25
; CHECK: Offset: 84
; CHECK: Name: producers
; CHECK: }