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>
|
||||
</function>
|
||||
<!-- double asin(double x); -->
|
||||
<!-- float asinf(float x); -->
|
||||
<!-- long double asinl(long double x); -->
|
||||
<function name="asin,std::asin,asinf,asinl">
|
||||
<function name="asin,std::asin">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<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">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
|
|
Loading…
Reference in New Issue