summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_codegen_gcc/tests/run/int.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_codegen_gcc/tests/run/int.rs')
-rw-r--r--compiler/rustc_codegen_gcc/tests/run/int.rs16
1 files changed, 3 insertions, 13 deletions
diff --git a/compiler/rustc_codegen_gcc/tests/run/int.rs b/compiler/rustc_codegen_gcc/tests/run/int.rs
index 75779622b..bfe73c384 100644
--- a/compiler/rustc_codegen_gcc/tests/run/int.rs
+++ b/compiler/rustc_codegen_gcc/tests/run/int.rs
@@ -3,22 +3,14 @@
// Run-time:
// status: 0
-#![feature(const_black_box, core_intrinsics, start)]
-
-#![no_std]
-
-#[panic_handler]
-fn panic_handler(_: &core::panic::PanicInfo) -> ! {
- core::intrinsics::abort();
-}
+#![feature(const_black_box)]
/*
* Code
*/
-#[start]
-fn main(_argc: isize, _argv: *const *const u8) -> isize {
- use core::hint::black_box;
+fn main() {
+ use std::hint::black_box;
macro_rules! check {
($ty:ty, $expr:expr) => {
@@ -335,6 +327,4 @@ fn main(_argc: isize, _argv: *const *const u8) -> isize {
const VAL5: T = 73236519889708027473620326106273939584_i128;
check_ops128!();
}
-
- 0
}