You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit 9a9a018 introduced a regression in following case -
E.g.
```
struct ObjInit {
int a;
} objbar = {constexpr_recurse(1)};
```
The assert was hit when DeclStmt contains both TypeDecl and VarDecl i.e. a CXXRecordDecl which is not constexpr and a VarDecl which is. This PR removes code added in call graph creation. This code is not technically not required since the AST visitor in SemaSYCL, will handle non-traversal of nodes representing constexpr variables.
Closes: #4048
Signed-off-by: Elizabeth Andrews <elizabeth.andrews@intel.com>
0 commit comments