Dan Gohman 0807bc7e07 [wasm-ld] Update supported features in the generic CPU configuration
Accompanying https://reviews.llvm.org/D125728, this updates LLVM
Codegen's "generic" CPU to enable the same new features.

Differential Revision: https://reviews.llvm.org/D125729
2022-11-02 12:51:28 -07:00

16 lines
379 B
LLVM

; 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"