2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2015-05-08 10:12:29 -05:00
|
|
|
// calling pin_thread and that's having weird side-effects.
|
2011-11-14 20:51:15 -06:00
|
|
|
|
2015-03-05 20:33:58 -06:00
|
|
|
#![feature(libc)]
|
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
mod rustrt1 {
|
2014-02-26 11:58:41 -06:00
|
|
|
extern crate libc;
|
2013-05-24 21:35:29 -05:00
|
|
|
|
2014-06-05 13:08:43 -05:00
|
|
|
#[link(name = "rust_test_helpers")]
|
2013-10-14 07:33:05 -05:00
|
|
|
extern {
|
2013-10-05 16:44:37 -05:00
|
|
|
pub fn rust_get_test_int() -> libc::intptr_t;
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-11-14 10:32:31 -06:00
|
|
|
}
|
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
mod rustrt2 {
|
2014-02-26 11:58:41 -06:00
|
|
|
extern crate libc;
|
2013-05-24 21:35:29 -05:00
|
|
|
|
2013-10-14 07:33:05 -05:00
|
|
|
extern {
|
2013-10-05 16:44:37 -05:00
|
|
|
pub fn rust_get_test_int() -> libc::intptr_t;
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-11-14 10:32:31 -06:00
|
|
|
}
|
|
|
|
|
2016-04-05 05:01:00 -05:00
|
|
|
mod rustrt3 {
|
|
|
|
// Different type, but same ABI (on all supported platforms).
|
|
|
|
// Ensures that we don't ICE or trigger LLVM asserts when
|
|
|
|
// importing the same symbol under different types.
|
|
|
|
// See https://github.com/rust-lang/rust/issues/32740.
|
|
|
|
extern {
|
|
|
|
pub fn rust_get_test_int() -> *const u8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-23 18:29:31 -06:00
|
|
|
unsafe {
|
2016-04-05 05:01:00 -05:00
|
|
|
let x = rustrt1::rust_get_test_int();
|
|
|
|
assert_eq!(x, rustrt2::rust_get_test_int());
|
|
|
|
assert_eq!(x as *const _, rustrt3::rust_get_test_int());
|
2013-01-23 18:29:31 -06:00
|
|
|
}
|
2011-11-14 10:32:31 -06:00
|
|
|
}
|