mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
6f7f7b1268
Register constraints might need to be tweeked.
20 lines
256 B
Plaintext
20 lines
256 B
Plaintext
--TEST--
|
|
008: type conversion FP2FP
|
|
--ARGS--
|
|
--emit-c
|
|
--CODE--
|
|
{
|
|
l_1 = START(l_4);
|
|
float x = PARAM(l_1, "x", 1);
|
|
double ret = FP2FP(x);
|
|
l_4 = RETURN(l_1, ret);
|
|
}
|
|
--EXPECT--
|
|
double test(float x)
|
|
{
|
|
float d_1 = x;
|
|
double d_2;
|
|
d_2 = d_1;
|
|
return d_2;
|
|
}
|