removed unused `daca.cfg` (#5467)
It appears this file was never used. And we shouldn't. Although this will help with reducing warning and improving coverage in daca it will not improve the analysis for the user. It might also mask issues.
This commit is contained in:
parent
f49fedb2ad
commit
4af2f991c2
31
cfg/daca.cfg
31
cfg/daca.cfg
|
@ -1,31 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<def format="2">
|
||||
<!-- This configuration is used in daca@home and contains some common practice macros and functions which are helpful for daca analysis. -->
|
||||
<!-- see gnu.cfg -->
|
||||
<define name="ASSERT(expr)" value="assert (expr)"/>
|
||||
<define name="BE(expr, val)" value="__builtin_expect (expr, val)"/>
|
||||
<function name="MIN">
|
||||
<use-retval/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue>arg1<arg2?arg1:arg2</returnValue>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<function name="MAX">
|
||||
<use-retval/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue>arg1>arg2?arg1:arg2</returnValue>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
</def>
|
Loading…
Reference in New Issue