-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Emit an error rather than ICEing for a missing built-in bound lang item.
closes #17392
- Loading branch information
Showing
8 changed files
with
102 additions
and
45 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// Test that a missing lang item (in this case `sized`) does not cause an ICE, | ||
// see #17392. | ||
|
||
// error-pattern: requires `sized` lang_item | ||
|
||
#![no_std] | ||
|
||
#[start] | ||
fn start(argc: int, argv: *const *const u8) -> int { | ||
0 | ||
} |
1c36d1c
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.
saw approval from nikomatsakis
at nrc@1c36d1c
1c36d1c
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.
merging nick29581/rust/dst-bug-nostd = 1c36d1c into auto
1c36d1c
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.
nick29581/rust/dst-bug-nostd = 1c36d1c merged ok, testing candidate = 7409050
1c36d1c
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.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/1586
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/1583
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/1577
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/1583
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/1580
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/1579
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/1579
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/1583
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/1577
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/1576
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/1579
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/1234
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/1232
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/1236
success: http://buildbot.rust-lang.org/builders/auto-win-64-opt/builds/69
success: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-t/builds/67
success: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-c/builds/67
1c36d1c
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.
fast-forwarding master to auto = 7409050