aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/WebAssembly/mutable-globals.ll
blob: 93962f7e6d92c3d89d49d0182204c63b18f16b80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc < %s -mcpu=mvp -mattr=+mutable-globals | FileCheck %s

; Test that mutable globals is properly emitted into the target features section

target triple = "wasm32-unknown-unknown"

define void @foo() {
  ret void
}

; CHECK-LABEL: .custom_section.target_features
; CHECK-NEXT: .int8 1
; CHECK-NEXT: .int8 43
; CHECK-NEXT: .int8 15
; CHECK-NEXT: .ascii "mutable-globals"