[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AVR / large-return-size.ll
blob5f51fa1079e5a8af30d256d168ce590cf586b34d
1 ; RUN: llc < %s -march=avr | FileCheck %s
2 define void @call_more_than_64_bits() {
3 ; CHECK-LABEL: call_more_than_64_bits
4 entry-block:
5   %foo = call { i64, i1 } @more_than_64_bits()
6   ret void
9 declare { i64, i1 } @more_than_64_bits()