std.cfg: Improved support for returnValue types for some math functions.
This commit is contained in:
parent
94c1809f26
commit
27be75b224
27
cfg/std.cfg
27
cfg/std.cfg
|
@ -282,13 +282,34 @@
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
<!-- double asin(double x); -->
|
<!-- double asin(double x); -->
|
||||||
<!-- float asinf(float x); -->
|
<function name="asin,std::asin">
|
||||||
<!-- long double asinl(long double x); -->
|
|
||||||
<function name="asin,std::asin,asinf,asinl">
|
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<pure/>
|
<pure/>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<leak-ignore/>
|
<leak-ignore/>
|
||||||
|
<returnValue type="double"/>
|
||||||
|
<arg nr="1">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
|
<!-- float asinf(float x); -->
|
||||||
|
<function name="asinf">
|
||||||
|
<use-retval/>
|
||||||
|
<pure/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<returnValue type="float"/>
|
||||||
|
<arg nr="1">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
|
<!-- long double asinl(long double x); -->
|
||||||
|
<function name="asinl">
|
||||||
|
<use-retval/>
|
||||||
|
<pure/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<returnValue type="long double"/>
|
||||||
<arg nr="1">
|
<arg nr="1">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
|
|
Loading…
Reference in New Issue