Uh oh!
There was an error while loading. Please reload this page.
Emit proper lifetime start intrinsics for personality slots - #40908
Merged
Conversation
We currently only emit a single call to the lifetime start intrinsic for the personality slot alloca. This happens because we create that call at the time that we create the alloca, instead of creating it each time we start using it. Because LLVM usually removes the alloca before the lifetime intrinsics are even considered, this didn't cause any problems yet, but we should fix this anyway.
rust-highfive
commented
Mar 29, 2017
Contributor
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
arielb1
commented
Mar 30, 2017
Contributor
@bors r+ |
bors
commented
Mar 30, 2017
Collaborator
📌 Commit 1eaa113 has been approved by |
bors
commented
Mar 31, 2017
Collaborator
⌛ Testing commit 1eaa113 with merge d425d23... |
bors
commented
Mar 31, 2017
Collaborator
💔 Test failed - status-appveyor |
Exception handling on MSVC targets doesn't use personality slots.
dotdash
commented
Mar 31, 2017
ContributorAuthor
Disabled the test on MSVC which doesn't use personality slots. |
arielb1
commented
Mar 31, 2017
Contributor
@bors r+ |
bors
commented
Mar 31, 2017
Collaborator
📌 Commit 0ba7da3 has been approved by |
bors
commented
Apr 1, 2017
Collaborator
⌛ Testing commit 0ba7da3 with merge 773d1ea... |
bors
commented
Apr 1, 2017
Collaborator
💔 Test failed - status-travis |
alexcrichton
commented
Apr 1, 2017
via email
Member
| … On Sat, Apr 1, 2017 at 7:10 AM, bors ***@***.***> wrote:
💔 Test failed - status-travis
<https://travis-ci.org/rust-lang/rust/builds/217513825>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#40908 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95FJhINx6O8E3D_PbfyXkO8UdqFciks5rrkyxgaJpZM4MtZcU>
.
|
bors added a commit
that referenced
this pull request
Apr 1, 2017
Emit proper lifetime start intrinsics for personality slots We currently only emit a single call to the lifetime start intrinsic for the personality slot alloca. This happens because we create that call at the time that we create the alloca, instead of creating it each time we start using it. Because LLVM usually removes the alloca before the lifetime intrinsics are even considered, this didn't cause any problems yet, but we should fix this anyway.
bors
commented
Apr 1, 2017
Collaborator
bors
commented
Apr 1, 2017
Collaborator
💔 Test failed - status-appveyor |
alexcrichton
commented
Apr 2, 2017
Member
@bors: retry
|
bors
commented
Apr 2, 2017
Collaborator
⌛ Testing commit 0ba7da3 with merge c684503... |
bors
commented
Apr 2, 2017
Collaborator
💔 Test failed - status-appveyor |
dotdash
commented
Apr 3, 2017
ContributorAuthor
Is that a spurious error? That build completed in the previous run. |
arielb1
commented
Apr 3, 2017
Contributor
Let's see @bors retry |
arielb1
commented
Apr 3, 2017
Contributor
Failure is: |
bors
commented
Apr 3, 2017
Collaborator
⌛ Testing commit 0ba7da3 with merge 9a388b8... |
bors
commented
Apr 3, 2017
Collaborator
💔 Test failed - status-travis |
alexcrichton
commented
Apr 3, 2017
via email
Member
| … On Mon, Apr 3, 2017 at 2:10 PM, bors ***@***.***> wrote:
💔 Test failed - status-travis
<https://travis-ci.org/rust-lang/rust/builds/218210808>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#40908 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95PoSTnLKtKNXOSTR3D5BkDSRA_WAks5rsVIigaJpZM4MtZcU>
.
|
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Apr 6, 2017
Emit proper lifetime start intrinsics for personality slots We currently only emit a single call to the lifetime start intrinsic for the personality slot alloca. This happens because we create that call at the time that we create the alloca, instead of creating it each time we start using it. Because LLVM usually removes the alloca before the lifetime intrinsics are even considered, this didn't cause any problems yet, but we should fix this anyway.
frewsxcv added a commit
to frewsxcv/rust
that referenced
this pull request
Apr 6, 2017
Emit proper lifetime start intrinsics for personality slots We currently only emit a single call to the lifetime start intrinsic for the personality slot alloca. This happens because we create that call at the time that we create the alloca, instead of creating it each time we start using it. Because LLVM usually removes the alloca before the lifetime intrinsics are even considered, this didn't cause any problems yet, but we should fix this anyway.
bors
commented
Apr 6, 2017
Collaborator
This file contains hidden or 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
Sign up for freeto 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.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.
We currently only emit a single call to the lifetime start intrinsic
for the personality slot alloca. This happens because we create that
call at the time that we create the alloca, instead of creating it each
time we start using it. Because LLVM usually removes the alloca before
the lifetime intrinsics are even considered, this didn't cause any
problems yet, but we should fix this anyway.