1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/WebAssembly/custom-sections.ll
Sam Clegg 753387b3f6 [WebAsembly] Update default triple in test files to wasm32-unknown-unkown.
Summary: The final -wasm component has been the default for some time now.

Subscribers: jfb, dschuff, jgravelle-google, eraman, aheejin, JDevlieghere, sunfish, llvm-commits

Differential Revision: https://reviews.llvm.org/D46342

llvm-svn: 332007
2018-05-10 17:49:11 +00:00

21 lines
556 B
LLVM

; RUN: llc < %s -asm-verbose=false | FileCheck %s
; Test the mechanism for defining user custom sections.
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown"
!0 = !{ !"red", !"foo" }
!1 = !{ !"green", !"bar" }
!2 = !{ !"green", !"qux" }
!wasm.custom_sections = !{ !0, !1, !2 }
; CHECK: .section .custom_section.red,"",@
; CHECK-NEXT: .ascii "foo"
; CHECK: .section .custom_section.green,"",@
; CHECK-NEXT: .ascii "bar"
; CHECK: .section .custom_section.green,"",@
; CHECK-NEXT: .ascii "qux"