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
[ARM] Generate 8.1-m CSINC, CSNEG and CSINV instructions.
[llvm-core.git]
/
test
/
CodeGen
/
Thumb2
/
thumb2-ldrd.ll
blob
c25359b40577e01252b7eb3806664eedaa505a10
1
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s
2
3
@b = external global i64*
4
5
define i64 @t(i64 %a) nounwind readonly {
6
entry:
7
; CHECK: ldrd
8
; CHECK: umull
9
%0 = load i64*, i64** @b, align 4
10
%1 = load i64, i64* %0, align 4
11
%2 = mul i64 %1, %a
12
ret i64 %2
13
}