blob: 8d59050f0d356ad73b52006f4ee4894a1506a555 [file] [log] [blame]
Dylan McKaya81719f2016-12-16 11:40:00 +00001; RUN: llc < %s -march=avr | FileCheck %s
2
3; CHECK-LABEL: shift_i64_i64
4define i64 @shift_i64_i64(i64 %a, i64 %b) {
5 ; CHECK: call __ashldi3
6 %result = shl i64 %a, %b
7 ret i64 %result
8}