Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign uptrans: Re-enable unwinding on 64-bit MSVC #27676
Conversation
rust-highfive
assigned
jroesch
Aug 11, 2015
This comment has been minimized.
This comment has been minimized.
|
r? @jroesch (rust_highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
rust-highfive
assigned
brson
and unassigned
jroesch
Aug 11, 2015
alexcrichton
force-pushed the
alexcrichton:msvc-unwind
branch
from
5360e41
to
457e40c
Aug 11, 2015
This comment has been minimized.
This comment has been minimized.
|
cc @vadimcn |
This comment has been minimized.
This comment has been minimized.
|
|
vadimcn
reviewed
Aug 11, 2015
src/librustc_trans/trans/base.rs
Outdated
| /// This is only true for MSVC targets, and even then the 64-bit MSVC target | ||
| /// currently uses SEH-ish unwinding with DWARF info tables to the side (same as | ||
| /// 64-bit MinGW) instead of "full SEH". | ||
| pub fn wants_seh(sess: &Session) -> bool { |
This comment has been minimized.
This comment has been minimized.
vadimcn
Aug 11, 2015
Contributor
I find this nomenclature confusing: the format of LSDA is not a part of the SEH spec, so both -gnu and -msvc are "full SEH". I think this should be called wants_msvc_lsda, or at least wants_msvc_seh.
This comment has been minimized.
This comment has been minimized.
alexcrichton
force-pushed the
alexcrichton:msvc-unwind
branch
from
457e40c
to
b6b4f5a
Aug 11, 2015
This comment has been minimized.
This comment has been minimized.
|
@bors r+ |
This comment has been minimized.
This comment has been minimized.
|
|
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this pull request
Aug 12, 2015
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this pull request
Aug 12, 2015
bors
merged commit b6b4f5a
into
rust-lang:master
Aug 12, 2015
1 check passed
continuous-integration/travis-ci/pr
The Travis CI build passed
Details
alexcrichton
deleted the
alexcrichton:msvc-unwind
branch
Aug 13, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
alexcrichton commentedAug 11, 2015
This commit leverages the runtime support for DWARF exception info added
in #27210 to enable unwinding by default on 64-bit MSVC. This also additionally
adds a few minor fixes here and there in the test harness and such to get
make checkentirely passing on 64-bit MSVC:maketest.pynow works with spaces/quotes in CC