================
@@ -470,6 +474,16 @@ void FactsGenerator::VisitLambdaExpr(const LambdaExpr *LE) 
{
   }
 }
 
+void FactsGenerator::VisitArraySubscriptExpr(const ArraySubscriptExpr *ASE) {
----------------
usx95 wrote:

Can you please verify that these do not fire in practice. Maybe try to build 
LLVM using your head Clang and see if it fires.

I use the following cmake in a separate build directory:

```
cmake -G Ninja path/to/llvm-project/llvm  \               
  -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;" 
\         -DLLVM_ENABLE_ASSERTIONS=On  \                        
  -DCMAKE_C_FLAGS_RELEASE="-O3 -gmlt -UNDEBUG" \  
  -DCMAKE_CXX_FLAGS_RELEASE="-O3 -gmlt -UNDEBUG -Wlifetime-safety" \
  -DCMAKE_C_COMPILER="/path/to/build/bin/clang" \
  -DCMAKE_CXX_COMPILER="/path/to/build/bin/clang++" \
  -DLLVM_USE_LINKER=lld -DLLVM_CCACHE_BUILD=1
```

`-Wlifetime-safety` might be noisy. You can try `-Wlifetime-safety-permissive` 
instead.

https://github.com/llvm/llvm-project/pull/186902
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to