-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Clang][OpenMP] fixed crash due to invalid binary expression in check…
…ing atomic semantics (#71480) This PR fixes llvm/llvm-project#69069 .
- Loading branch information
1 parent
7bbf9e9
commit da6ae83
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// RUN: %clang_cc1 -fopenmp-simd -fsyntax-only -verify %s | ||
// see https://github.com/llvm/llvm-project/issues/69069 | ||
// or https://github.com/llvm/llvm-project/pull/71480 | ||
|
||
void test() { | ||
int v; const int x; // expected-note {{variable 'x' declared const here}} | ||
#pragma omp atomic capture | ||
{ | ||
v = x; | ||
x = 1; // expected-error {{cannot assign to variable 'x' with const-qualified type 'const int'}} | ||
} | ||
} |