diff options
| author | Tomasz Miąsko <tomasz.miasko@gmail.com> | 2020-10-04 00:00:00 +0000 |
|---|---|---|
| committer | Tomasz Miąsko <tomasz.miasko@gmail.com> | 2020-10-04 00:00:00 +0000 |
| commit | f271957d89c8d694bd6b8963e4c21278e1cc0354 (patch) | |
| tree | adfb4419141291305dc6debec7d58a8879757298 | |
| parent | 80d5017a6e3071c4810a3f5e42fd916df3173557 (diff) | |
| download | rust-f271957d89c8d694bd6b8963e4c21278e1cc0354.tar.gz rust-f271957d89c8d694bd6b8963e4c21278e1cc0354.zip | |
Add regression test for SimplifyBranchSame miscompilation
| -rw-r--r-- | src/test/ui/mir/simplify-branch-same.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/mir/simplify-branch-same.rs b/src/test/ui/mir/simplify-branch-same.rs new file mode 100644 index 00000000000..d631c33d61f --- /dev/null +++ b/src/test/ui/mir/simplify-branch-same.rs @@ -0,0 +1,21 @@ +// Regression test for SimplifyBranchSame miscompilation. +// run-pass + +macro_rules! m { + ($a:expr, $b:expr, $c:block) => { + match $a { + Lto::Fat | Lto::Thin => { $b; (); $c } + Lto::No => { $b; () } + } + } +} + +pub enum Lto { No, Thin, Fat } + +fn f(mut cookie: u32, lto: Lto) -> u32 { + let mut _a = false; + m!(lto, _a = true, {cookie = 0}); + cookie +} + +fn main() { assert_eq!(f(42, Lto::Thin), 0) } |
