Commit c0193e6f by Thomas Quinot Committed by Arnaud Charlet

exp_strm.adb (Build_Elementary_Input_Call, [...]): Fix incorrect condition in…

exp_strm.adb (Build_Elementary_Input_Call, [...]): Fix incorrect condition in circuitry that selects the stream attribute routines...

2008-08-20  Thomas Quinot  <quinot@adacore.com>

	* exp_strm.adb (Build_Elementary_Input_Call,
	Build_Elementary_Write_Call): Fix incorrect condition in circuitry that
	selects the stream attribute routines for long float types.

From-SVN: r139299
parent b9ccd710
......@@ -521,7 +521,7 @@ package body Exp_Strm is
elsif P_Size <= Standard_Long_Float_Size
and then (Standard_Long_Float_Size /= Standard_Long_Long_Float_Size
or else Rt_Type = Standard_Float)
or else Rt_Type = Standard_Long_Float)
then
Lib_RE := RE_I_LF;
......@@ -735,7 +735,7 @@ package body Exp_Strm is
elsif P_Size <= Standard_Long_Float_Size
and then (Standard_Long_Float_Size /= Standard_Long_Long_Float_Size
or else Rt_Type = Standard_Float)
or else Rt_Type = Standard_Long_Float)
then
Lib_RE := RE_W_LF;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment