diff options
| author | bors <bors@rust-lang.org> | 2013-11-11 10:46:28 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-11-11 10:46:28 -0800 |
| commit | 0966ec01dcb0ff90e6d483706820794ef8e16c2e (patch) | |
| tree | 7d2032464a17a0ecb160828be5197587a545752d /src/libsyntax/lib.rs | |
| parent | 4d9b95fada7c97ac1c63099bab1d45ba120958ec (diff) | |
| parent | 1f192430956704ddf263aba0cfb5b8856c547beb (diff) | |
| download | rust-0966ec01dcb0ff90e6d483706820794ef8e16c2e.tar.gz rust-0966ec01dcb0ff90e6d483706820794ef8e16c2e.zip | |
auto merge of #10407 : alexcrichton/rust/no-fixed-stack-segment, r=brson
The commit messages have more details, but this removes all analysis and usage related to fixed_stack_segment and rust_stack attributes. It's now the assumption that we always have "enough stack" and we'll implement detection of stack overflow through other means. The stack overflow detection is currently implemented for rust functions, but it is unimplemented for C functions (we still don't have guard pages).
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 3673d3719ad..247be194b90 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -22,6 +22,8 @@ #[crate_type = "lib"]; #[feature(macro_rules, globs, managed_boxes)]; +#[allow(unrecognized_lint)]; // NOTE: remove after the next snapshot +#[allow(cstack)]; // NOTE: remove after the next snapshot. extern mod extra; |
