gccrs: testsuite: add loop condition execution test
authorliushuyu <liushuyu011@gmail.com>
Wed, 7 Sep 2022 04:41:17 +0000 (22:41 -0600)
committerArthur Cohen <arthur.cohen@embecosm.com>
Tue, 31 Jan 2023 13:16:51 +0000 (14:16 +0100)
gcc/testsuite/ChangeLog:

* rust/execute/torture/loop-condition-eval.rs: New test.

Signed-off-by: Zixing Liu <liushuyu011@gmail.com>
gcc/testsuite/rust/execute/torture/loop-condition-eval.rs [new file with mode: 0644]

diff --git a/gcc/testsuite/rust/execute/torture/loop-condition-eval.rs b/gcc/testsuite/rust/execute/torture/loop-condition-eval.rs
new file mode 100644 (file)
index 0000000..0089659
--- /dev/null
@@ -0,0 +1,21 @@
+// { dg-output "1\n" }
+pub fn test() -> u64 {
+    let mut n = 113383; // #20 in https://oeis.org/A006884
+    while n != 1 {
+        n = if n % 2 == 0 { n / 2 } else { 3 * n + 1 };
+    }
+    n
+}
+
+pub fn test_1() -> u64 {
+    test()
+}
+
+extern "C" {
+    fn printf(fmt: *const i8, ...);
+}
+
+fn main() -> i32 {
+    unsafe { printf("%lu\n" as *const str as *const i8, test_1()) }
+    0
+}