repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git]
/
llvm
/
test
/
tools
/
UpdateTestChecks
/
update_llc_test_checks
/
Inputs
/
systemz-nounwind.ll
blob
2e1781b02db4b94f2728a8b846641a141e715feb
1
; RUN: llc -mtriple=s390x-unknown-linux < %s | FileCheck %s
2
3
define i32 @unwind(i32 %a, i32 %b) {
4
%add = add i32 %a, %b
5
ret i32 %add
6
}
7
8
define i32 @nounwind(i32 %a, i32 %b) nounwind {
9
%add = add i32 %a, %b
10
ret i32 %add
11
}