Issue 140069
Summary [OpenMP] Assertion `(i >= FTy->getNumParams() || FTy->getParamType(i) == Args[i]->getType()) && "Calling a function with a bad signature!"' failed.
Labels new issue
Assignees
Reporter k-arrows
    Reproducer:
https://godbolt.org/z/vb3hrfKoo
```cpp
int __seg_gs a;
int b;

void f (void)
{

#pragma omp target map(alloc: a) map(from: b)
  {
    a = 0; 
  }
}
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to