Impact analysis does not catch Pdg.Top (returned on variadic calls)
ID0000768:
**This issue was created automatically from Mantis Issue 768. Further discussion may take place here.**
---
| **Id** | **Project** | **Category** | **View** | **Due Date** | **Updated** |
| --- | --- | --- | --- | --- | --- |
| ID0000768 | Frama-C | Plug-in > impact analysis | public | 2011-03-29 | 2011-10-10 |
| | | | | | |
| --- | --- | --- | --- | --- | --- |
| **Reporter** | yakobowski | **Assigned To** | signoles | **Resolution** | fixed |
| **Priority** | normal | **Severity** | crash | **Reproducibility** | always |
| **Platform** | - | **OS** | - | **OS Version** | - |
| **Product Version** | Frama-C Carbon-20110201 | **Target Version** | - | **Fixed in Version** | Frama-C Nitrogen-20111001 |
### Description :
Querying the impact analysis of 'i++' in the following code results in a crash
int f(int, ...);
int main () {
int i=0;
i++;
f(i);
}
issue