1; A simple, barebones test to check whether assembly can be emitted
2; for the z/OS target
3; RUN: llc < %s -mtriple=s390x-ibm-zos | FileCheck %s
4
5@a = global i32 0, align 4
6
7define signext i32 @main() {
8; CHECK: .section ".text"
9; CHECK: main:
10; CHECK: .section "a"
11entry:
12  ret i32 0
13}
14