Paul Fultz II e4677ae640 Fix issue 8910: Regression: ValueFlow: wrong conditional tokvalue
This fixes issue in:

```cpp
void f()
{
    char stack[512];
    RGNDATA *data;

    if (data_size > sizeof (stack))
        data = malloc (data_size);
    else
        data = (RGNDATA *)stack;

    if ((char *)data != stack)
            free (data); // <- data is not stack
}
```

It seems the `ProgramMemory` can't handle two known values(such as int and tok) together. So instead `ValueFlowAfterAssign` runs `ValueFlowForward` with tok values and then runs it with the other values.
2018-12-29 09:31:21 +01:00
..
2017-06-05 13:23:00 +02:00
2018-01-14 15:37:52 +01:00
2018-01-14 15:37:52 +01:00
2018-01-14 15:37:52 +01:00
2018-05-15 16:37:40 +02:00
2018-07-15 23:05:48 +02:00
2018-12-17 18:54:32 +01:00
2018-10-13 18:20:31 +02:00
2018-11-21 08:39:21 +01:00
2018-05-15 16:37:40 +02:00
2018-12-21 13:55:24 +01:00
2018-12-21 13:55:24 +01:00
2018-06-16 22:28:14 +02:00
2018-12-23 12:42:18 +01:00
2018-12-25 21:11:23 +01:00