Paul Fultz II ee7fe3aaa1 Fix FP: Unitialized variable when using a pointer
This fixes the FP in cases like this:

```cpp
void f() {
    bool b;
    bool * x = &b;
    if (x != nullptr)
        x = 1;
}
```

It tracks the indirection of the uninit value in valueflow.
2019-08-17 07:36:41 +02:00
..
2019-06-29 07:49:14 +02:00
2019-03-16 09:17:50 +01:00
2019-07-25 17:19:51 +02:00
2019-03-16 09:17:50 +01:00
2019-06-29 07:49:14 +02:00
2019-03-16 09:17:50 +01:00
2019-03-16 09:17:50 +01:00
2019-06-15 13:01:45 +02:00
2019-03-16 09:17:50 +01:00
2019-08-07 08:04:10 +02:00
2019-07-24 09:59:01 +02:00
2019-06-29 07:49:14 +02:00
2019-03-16 09:17:50 +01:00
2019-04-06 06:54:38 +02:00
2019-08-15 10:46:16 +02:00
2019-03-16 09:17:50 +01:00
2019-03-16 09:17:50 +01:00
2019-05-17 09:31:41 +02:00
2019-04-14 15:00:03 +02:00
2019-07-31 22:56:16 +02:00
2019-08-12 12:54:25 +02:00
2019-08-14 20:53:51 +02:00
2019-07-17 10:43:18 +02:00
2019-05-09 06:55:36 +02:00
2019-06-29 07:49:14 +02:00
2019-07-31 22:35:51 +02:00
2019-07-31 22:35:51 +02:00
2019-07-17 10:14:25 +02:00
2019-07-17 10:14:25 +02:00
2019-07-02 20:59:52 +02:00