Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / Generic / storetrunc-fp.ll
blob0f7bb0b85ee913a21082adb89d095ff5651a222e
1 ; RUN: llvm-as < %s | llc
3 define void @foo(double %a, double %b, float* %fp) {
4         %c = fadd double %a, %b
5         %d = fptrunc double %c to float
6         store float %d, float* %fp
7         ret void