about summary refs log tree commit diff
path: root/tests/codegen/bigint-helpers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/bigint-helpers.rs')
-rw-r--r--tests/codegen/bigint-helpers.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/codegen/bigint-helpers.rs b/tests/codegen/bigint-helpers.rs
deleted file mode 100644
index 355cccb8150..00000000000
--- a/tests/codegen/bigint-helpers.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-//@ compile-flags: -C opt-level=3
-
-#![crate_type = "lib"]
-#![feature(bigint_helper_methods)]
-
-// CHECK-LABEL: @u32_carrying_add
-#[no_mangle]
-pub fn u32_carrying_add(a: u32, b: u32, c: bool) -> (u32, bool) {
-    // CHECK: @llvm.uadd.with.overflow.i32
-    // CHECK: @llvm.uadd.with.overflow.i32
-    // CHECK: or disjoint i1
-    u32::carrying_add(a, b, c)
-}