std.cfg: Added support <returnValue> support for imaxabs(). windows.cfg: Added support for _abs64().
This commit is contained in:
parent
8a216ad87e
commit
56e75e5776
|
@ -21,6 +21,7 @@
|
|||
<use-retval/>
|
||||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue>arg1>0?arg1:-arg1</returnValue>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
|
|
|
@ -2656,4 +2656,16 @@ HFONT CreateFont(
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!--__int64 _abs64( __int64 n);-->
|
||||
<function name="_abs64">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue>arg1>0?arg1:-arg1</returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
<not-bool/>
|
||||
</arg>
|
||||
</function>
|
||||
</def>
|
||||
|
|
Loading…
Reference in New Issue