--TEST-- 008: type conversion FP2FP --ARGS-- --emit-llvm --CODE-- { l_1 = START(l_4); float x = PARAM(l_1, "x", 1); double ret = FP2FP(x); l_4 = RETURN(l_1, ret); } --EXPECT-- define double @test(float %d2) { %d3 = fpext float %d2 to double ret double %d3 }