mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
81bb5f99ad
The data layout strings do not have any effect on llc tests and will become misleadingly out of date as we continue to update the canonical data layout, so remove them from the tests. Differential Revision: https://reviews.llvm.org/D105842
46 lines
1.1 KiB
LLVM
46 lines
1.1 KiB
LLVM
; RUN: llc < %s -asm-verbose=false | 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 }
|
|
|
|
!llvm.ident = !{!3}
|
|
!3 = !{!"clang version 123"}
|
|
|
|
!llvm.module.flags = !{!4}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
|
|
!llvm.dbg.cu = !{!5}
|
|
!5 = distinct !DICompileUnit(language: DW_LANG_C99, file: !6)
|
|
!6 = !DIFile(filename: "test", directory: "testdir")
|
|
|
|
; 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"
|
|
|
|
; CHECK: .section .custom_section.producers,"",@
|
|
; CHECK-NEXT: .int8 2
|
|
; CHECK-NEXT: .int8 8
|
|
; CHECK-NEXT: .ascii "language"
|
|
; CHECK-NEXT: .int8 1
|
|
; CHECK-NEXT: .int8 3
|
|
; CHECK-NEXT: .ascii "C99"
|
|
; CHECK-NEXT: .int8 0
|
|
; CHECK-NEXT: .int8 12
|
|
; CHECK-NEXT: .ascii "processed-by"
|
|
; CHECK-NEXT: .int8 1
|
|
; CHECK-NEXT: .int8 5
|
|
; CHECK-NEXT: .ascii "clang"
|
|
; CHECK-NEXT: .int8 3
|
|
; CHECK-NEXT: .ascii "123"
|