[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AVR / shift.ll
blob8d59050f0d356ad73b52006f4ee4894a1506a555
1 ; RUN: llc < %s -march=avr | FileCheck %s
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