Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / UpdateTestChecks / update_llc_test_checks / Inputs / systemz-nounwind.ll
blob2e1781b02db4b94f2728a8b846641a141e715feb
1 ; RUN: llc -mtriple=s390x-unknown-linux < %s | FileCheck %s
3 define i32 @unwind(i32 %a, i32 %b) {
4   %add = add i32 %a, %b
5   ret i32 %add
8 define i32 @nounwind(i32 %a, i32 %b) nounwind {
9   %add = add i32 %a, %b
10   ret i32 %add