-
Notifications
You must be signed in to change notification settings - Fork 161
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
Fix _LIBCUDACXX_UNREACHABLE
for old MSVC
#1114
Merged
Merged
Conversation
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
miscco
requested review from
wmaxey and
griwes
and removed request for
a team
November 16, 2023 10:19
miscco
added
nvbug
Has an associated internal NVIDIA NVBug.
libcu++
For all items related to libcu++
backport branch/2.3.x
For backporting to the 2.3.x release branch
bug: functional
labels
Nov 16, 2023
miscco
force-pushed
the
fix_msvc_unreachable
branch
3 times, most recently
from
November 16, 2023 12:55
2f2a776
to
8065a4a
Compare
wmaxey
approved these changes
Nov 16, 2023
gevtushenko
approved these changes
Nov 16, 2023
miscco
force-pushed
the
fix_msvc_unreachable
branch
from
November 17, 2023 07:33
8065a4a
to
40e63c4
Compare
MSVC2017 / 2019 have issues properly determining that `__assume(0)` is indeed meant to mean unreachable code and complains about missing return statement sometimes. We can work around this by wrapping it into a `__declspec(noreturn)` function 🤷 Addresses nvbug4359466
miscco
force-pushed
the
fix_msvc_unreachable
branch
from
November 17, 2023 16:14
40e63c4
to
f5dccff
Compare
Backport failed for Please cherry-pick the changes locally. git fetch origin branch/2.3.x
git worktree add -d .worktree/backport-1114-to-branch/2.3.x origin/branch/2.3.x
cd .worktree/backport-1114-to-branch/2.3.x
git checkout -b backport-1114-to-branch/2.3.x
ancref=$(git merge-base aeaa3d39d3e32d7bb8a2aa2899fd51166db2667a f5dccff6c5e08556cf28c8f98c7faa74b10abe54)
git cherry-pick -x $ancref..f5dccff6c5e08556cf28c8f98c7faa74b10abe54 |
copy-pr-bot bot
pushed a commit
that referenced
this pull request
Nov 23, 2023
MSVC2017 / 2019 have issues properly determining that `__assume(0)` is indeed meant to mean unreachable code and complains about missing return statement sometimes. We can work around this by wrapping it into a `__declspec(noreturn)` function 🤷 Addresses nvbug4359466
wmaxey
pushed a commit
that referenced
this pull request
Nov 29, 2023
MSVC2017 / 2019 have issues properly determining that `__assume(0)` is indeed meant to mean unreachable code and complains about missing return statement sometimes. We can work around this by wrapping it into a `__declspec(noreturn)` function 🤷 Addresses nvbug4359466
miscco
added
backport done
This PR has been backported to the relevant branch
and removed
backport branch/2.3.x
For backporting to the 2.3.x release branch
labels
Jan 18, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backport done
This PR has been backported to the relevant branch
bug: functional
libcu++
For all items related to libcu++
nvbug
Has an associated internal NVIDIA NVBug.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
MSVC2017 / 2019 have issues properly determining that
__assume(0)
is indeed meant to mean unreachable code and complains about missing return statement sometimes.We can work around this by wrapping it into a
__declspec(noreturn)
function 🤷Addresses nvbug4359466