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