librustc: Don't allow return_address intrinsic in functions that don't use an out pointer.
This commit is contained in:
parent
9dac85f92d
commit
5aedcb1e91
5 changed files with 51 additions and 6 deletions
31
src/test/compile-fail/intrinsic-return-address.rs
Normal file
31
src/test/compile-fail/intrinsic-return-address.rs
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
// 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.
|
||||
|
||||
#![allow(warnings)]
|
||||
#![feature(intrinsics)]
|
||||
|
||||
extern "rust-intrinsic" {
|
||||
fn return_address() -> *const u8;
|
||||
}
|
||||
|
||||
unsafe fn f() {
|
||||
let _ = return_address();
|
||||
//~^ ERROR invalid use of `return_address` intrinsic: function does not use out pointer
|
||||
}
|
||||
|
||||
unsafe fn g() -> int {
|
||||
let _ = return_address();
|
||||
//~^ ERROR invalid use of `return_address` intrinsic: function does not use out pointer
|
||||
0
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
|
||||
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
#![feature(intrinsics)];
|
||||
#![feature(intrinsics)]
|
||||
|
||||
use std::ptr;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue