repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert 374373: [Codegen] Alter the default promotion for saturating adds and subs
[llvm-core.git]
/
test
/
CodeGen
/
AArch64
/
PBQP.ll
blob
675a2ca60ddbe1479fa4c0e96d761c95331ad784
1
; RUN: llc -mtriple=aarch64-linux-gnu -mcpu=cortex-a57 -regalloc=pbqp -pbqp-coalescing -o - %s | FileCheck %s
2
3
define i32 @foo(i32 %a) {
4
; CHECK-LABEL: foo:
5
; CHECK: bl bar
6
; CHECK: bl baz
7
%call = call i32 @bar(i32 %a)
8
%call1 = call i32 @baz(i32 %call)
9
ret i32 %call1
10
}
11
12
declare i32 @bar(i32)
13
declare i32 @baz(i32)
14