-
Notifications
You must be signed in to change notification settings - Fork 241
Explicitly cast OCLMemOrderKind members from std::memory_order in C++20 case #3254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…20 case Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
/backport llvm_release_140 |
@jaladreips now (with the PR merged) backport command should work |
/backport llvm_release_140 |
Attempting to create backport to |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
Success. Backport PR created: #3256 |
/backport llvm_release_150 |
Attempting to create backport to |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
Success. Backport PR created: #3257 |
/backport llvm_release_160 |
Attempting to create backport to |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
Success. Backport PR created: #3258 |
/backport llvm_release_170 |
Attempting to create backport to |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
Success. Backport PR created: #3259 |
/backport llvm_release_180 |
Attempting to create backport to |
Success. Backport PR created: #3260 |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
/backport llvm_release_190 |
Attempting to create backport to |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
Success. Backport PR created: #3261 |
/backport llvm_release_200 |
Attempting to create backport to |
…20 case (#3254) Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way. Compilation failed: https://godbolt.org/z/3PYqsETdc Compilation successful: https://godbolt.org/z/bjeYK376s
Success. Backport PR created: #3262 |
…s from std::memory_order in C++20 case (#3256) Backport of PR #3254 into `llvm_release_140`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
…s from std::memory_order in C++20 case (#3257) Backport of PR #3254 into `llvm_release_150`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
…s from std::memory_order in C++20 case (#3258) Backport of PR #3254 into `llvm_release_160`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
…s from std::memory_order in C++20 case (#3259) Backport of PR #3254 into `llvm_release_170`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
…s from std::memory_order in C++20 case (#3260) Backport of PR #3254 into `llvm_release_180`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
…s from std::memory_order in C++20 case (#3261) Backport of PR #3254 into `llvm_release_190`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
…s from std::memory_order in C++20 case (#3262) Backport of PR #3254 into `llvm_release_200`. All commits applied cleanly. Co-authored-by: Jakub Jakacki <[email protected]>
Clang does not like the current way of directly assigning members of one enum to another and requires explicit static_cast on the way.
Compilation failed:
https://godbolt.org/z/3PYqsETdc
Compilation successful:
https://godbolt.org/z/bjeYK376s