blob: 7f7c7f71b3adfc4a026b58139397416e07c95170 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s
Chris Lattner41c5a392008-01-17 19:47:23 +00002
3define void @foo(double %a, double %b, float* %fp) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00004 %c = fadd double %a, %b
Chris Lattner41c5a392008-01-17 19:47:23 +00005 %d = fptrunc double %c to float
6 store float %d, float* %fp
7 ret void
8}