Home | History | Annotate | Download | only in AVR
      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 }
      9