This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / CodeGen / X86 / bigstructret2.ll
blob46e0fd2176465d2dc4491a30d39755e98847e800
1 ; RUN: llc < %s -march=x86 -o %t
3 %0 = type { i64, i64 }
5 declare fastcc %0 @ReturnBigStruct() nounwind readnone
7 define void @test(%0* %p) {
8   %1 = call fastcc %0 @ReturnBigStruct()
9   store %0 %1, %0* %p
10   ret void