https://github.com/k-arrows commented:

I am not a developer, so I won't review the implementation, but I have one 
comment. The way I originally wrote the bug report was poor, but it is not 
necessary to limit the fix and its test to OpenMP SIMD. For example, the code 
below also crashes:
https://godbolt.org/z/7T8MbE5j5
```cpp
void f(void) {
#pragma omp for collapse(0xFFFFFFFFFFFFFFFF)
  for (int i = 0; i < 10; i++)
    ;
}
```

https://github.com/llvm/llvm-project/pull/138592
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to