Unverified Commit c4e94633 authored by Samira Bazuzi's avatar Samira Bazuzi Committed by GitHub
Browse files

Revert "[clang][dataflow] Correctly handle `InitListExpr` of union type." (#82856)



Reverts llvm/llvm-project#82348, which caused crashes when analyzing
empty InitListExprs for unions, e.g.

```cc
union U {
  double double_value;
  int int_value;
};

void target() {
  U value;
  value = {};
}
```

Co-authored-by: default avatarSamira Bazuzi <bazuzi@users.noreply.github.com>
parent 96e536ec
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment