Dylan McKay | a81719f | 2016-12-16 11:40:00 +0000 | [diff] [blame] | 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 | } |