[PATCH] D60594: [WebAssembly] Add mutable-globals to bleeding-edge CPU
Thomas Lively via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 12 13:39:43 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL358310: [WebAssembly] Add mutable-globals to bleeding-edge CPU (authored by tlively, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D60594?vs=194795&id=194953#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60594/new/
https://reviews.llvm.org/D60594
Files:
llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
llvm/trunk/test/CodeGen/WebAssembly/target-features.ll
Index: llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
===================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
+++ llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
@@ -86,7 +86,8 @@
// Latest and greatest experimental version of WebAssembly. Bugs included!
def : ProcessorModel<"bleeding-edge", NoSchedModel,
[FeatureSIMD128, FeatureAtomics,
- FeatureNontrappingFPToInt, FeatureSignExt]>;
+ FeatureNontrappingFPToInt, FeatureSignExt,
+ FeatureMutableGlobals]>;
//===----------------------------------------------------------------------===//
// Target Declaration
Index: llvm/trunk/test/CodeGen/WebAssembly/target-features.ll
===================================================================
--- llvm/trunk/test/CodeGen/WebAssembly/target-features.ll
+++ llvm/trunk/test/CodeGen/WebAssembly/target-features.ll
@@ -75,11 +75,14 @@
; SIMD128-NEXT: .ascii "simd128"
; +atomics, +nontrapping-fptoint, +sign-ext, +simd128
-; BLEEDING-EDGE-NEXT: .int8 4
+; BLEEDING-EDGE-NEXT: .int8 5
; BLEEDING-EDGE-NEXT: .int8 43
; BLEEDING-EDGE-NEXT: .int8 7
; BLEEDING-EDGE-NEXT: .ascii "atomics"
; BLEEDING-EDGE-NEXT: .int8 43
+; BLEEDING-EDGE-NEXT: .int8 15
+; BLEEDING-EDGE-NEXT: .ascii "mutable-globals"
+; BLEEDING-EDGE-NEXT: .int8 43
; BLEEDING-EDGE-NEXT: .int8 19
; BLEEDING-EDGE-NEXT: .ascii "nontrapping-fptoint"
; BLEEDING-EDGE-NEXT: .int8 43
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60594.194953.patch
Type: text/x-patch
Size: 1530 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190412/133e6b4b/attachment.bin>
More information about the llvm-commits
mailing list