repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-complete.git]
/
test
/
CodeGen
/
AArch64
/
simple-macho.ll
blob
2c2ad8a7a698d0848c9c95f296c6a1b94e53aee0
1
; RUN: llc -mtriple=arm64-macho -o - %s | FileCheck %s
2
; RUN: llc -mtriple=arm64-macho -filetype=obj -o %t %s
3
; RUN: llvm-objdump -triple=arm64-macho -d %t | FileCheck --check-prefix=CHECK-OBJ %s
4
5
define void @foo() {
6
; CHECK-LABEL: _foo:
7
; CHECK: ret
8
9
; CHECK-OBJ: 0: c0 03 5f d6 ret
10
11
ret void
12
}