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
[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git]
/
test
/
CodeGen
/
AVR
/
shift.ll
blob
8d59050f0d356ad73b52006f4ee4894a1506a555
1
; RUN: llc < %s -march=avr | FileCheck %s
2
3
; CHECK-LABEL: shift_i64_i64
4
define i64 @shift_i64_i64(i64 %a, i64 %b) {
5
; CHECK: call __ashldi3
6
%result = shl i64 %a, %b
7
ret i64 %result
8
}