xref: /llvm-project/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/systemz-nounwind.ll (revision 0f2c071fad60d7606ee1a05c71ab5e0510d5becc)
1; RUN: llc -mtriple=s390x-unknown-linux < %s | FileCheck %s
2
3define i32 @unwind(i32 %a, i32 %b) {
4  %add = add i32 %a, %b
5  ret i32 %add
6}
7
8define i32 @nounwind(i32 %a, i32 %b) nounwind {
9  %add = add i32 %a, %b
10  ret i32 %add
11}
12