diff options
| author | Santiago Pastorino <spastorino@gmail.com> | 2019-11-22 17:26:09 -0300 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2020-01-10 09:08:24 +0100 |
| commit | 1688719214ef8a0638e1df543b1a6e77a0909244 (patch) | |
| tree | 23a78fc91b3a546fb637041cc8b21dbdf1f9959b /src/test/mir-opt/inline | |
| parent | a59abfa450cf9d18d725c2b757686fd4b65ccbe5 (diff) | |
| download | rust-1688719214ef8a0638e1df543b1a6e77a0909244.tar.gz rust-1688719214ef8a0638e1df543b1a6e77a0909244.zip | |
Promote `Ref`s to constants instead of static
Diffstat (limited to 'src/test/mir-opt/inline')
| -rw-r--r-- | src/test/mir-opt/inline/inline-retag.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/mir-opt/inline/inline-retag.rs b/src/test/mir-opt/inline/inline-retag.rs index 6cdbcfdb0ad..7b78fc339f2 100644 --- a/src/test/mir-opt/inline/inline-retag.rs +++ b/src/test/mir-opt/inline/inline-retag.rs @@ -25,11 +25,11 @@ fn foo(x: &i32, y: &i32) -> bool { // ... // Retag(_3); // Retag(_6); -// StorageLive(_9); -// _9 = (*_3); -// StorageLive(_10); -// _10 = (*_6); -// _0 = Eq(move _9, move _10); +// StorageLive(_11); +// _11 = (*_3); +// StorageLive(_12); +// _12 = (*_6); +// _0 = Eq(move _11, move _12); // ... // return; // } |
