From a4b7ed7a42c716ab9f05e351f003d589124fd55d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:58 +0200 Subject: Adding upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/mir-opt/dataflow-const-prop/if.rs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/test/mir-opt/dataflow-const-prop/if.rs (limited to 'src/test/mir-opt/dataflow-const-prop/if.rs') diff --git a/src/test/mir-opt/dataflow-const-prop/if.rs b/src/test/mir-opt/dataflow-const-prop/if.rs deleted file mode 100644 index 34fc35790..000000000 --- a/src/test/mir-opt/dataflow-const-prop/if.rs +++ /dev/null @@ -1,11 +0,0 @@ -// unit-test: DataflowConstProp - -// EMIT_MIR if.main.DataflowConstProp.diff -fn main() { - let a = 1; - let b = if a == 1 { 2 } else { 3 }; - let c = b + 1; - - let d = if a == 1 { a } else { a + 1 }; - let e = d + 1; -} -- cgit v1.2.3