-
Notifications
You must be signed in to change notification settings - Fork 794
[SYCL] logical operation return type is boolean #17239
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
Changes from 2 commits
48153fb
b6df1d9
0c4d352
b1d3543
df2fcb2
fe3b943
89462df
025456a
b800256
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,35 @@ | ||||||||||||||||||
| // RUN: %clang -fpreview-breaking-changes -fsycl -o - %s | ||||||||||||||||||
|
||||||||||||||||||
| with test_env(): | |
| sp = subprocess.getstatusoutput( | |
| config.dpcpp_compiler | |
| + " -fsycl -fpreview-breaking-changes " | |
| + check_preview_breaking_changes_file | |
| ) | |
| if sp[0] == 0: | |
| config.available_features.add("preview-breaking-changes-supported") |
We should either guard the entire RUN-line here, or make sure that we always build with preview enabled and it's always supported.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, thank you for clarifying. I think either solution is fine. Doing REQUIRE: preview-breaking-changes-supported would be the cleaner option IMO.
Uh oh!
There was an error while loading. Please reload this page.