saudi added inline comments.

================
Comment at: clang/lib/CodeGen/CGDebugInfo.cpp:1420
+  if (Var->getInit())
+    Value = Var->evaluateValue();
+  else if (auto *TemplateDecl = Var->getInstantiatedFromStaticDataMember()) {
----------------
I encountered an assert inside `evaluateValue()` call :
`assert(!Init->isValueDependent());`

repro code:
```
template <int VAL> class A {
 static constexpr int dep = VAL;
};
A<10> a;
```
Note that it crashed with `static constexp` member but not with `static const`.



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D89286/new/

https://reviews.llvm.org/D89286

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to