diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
commit | 698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch) | |
tree | 173a775858bd501c378080a10dca74132f05bc50 /src/test/mir-opt/simplify_locals.c.SimplifyLocals.diff | |
parent | Initial commit. (diff) | |
download | rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip |
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/mir-opt/simplify_locals.c.SimplifyLocals.diff')
-rw-r--r-- | src/test/mir-opt/simplify_locals.c.SimplifyLocals.diff | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/mir-opt/simplify_locals.c.SimplifyLocals.diff b/src/test/mir-opt/simplify_locals.c.SimplifyLocals.diff new file mode 100644 index 000000000..5d7517e4e --- /dev/null +++ b/src/test/mir-opt/simplify_locals.c.SimplifyLocals.diff @@ -0,0 +1,33 @@ +- // MIR for `c` before SimplifyLocals ++ // MIR for `c` after SimplifyLocals + + fn c() -> () { + let mut _0: (); // return place in scope 0 at $DIR/simplify-locals.rs:+0:8: +0:8 + let _1: [u8; 10]; // in scope 0 at $DIR/simplify-locals.rs:+1:9: +1:14 +- let mut _2: &[u8]; // in scope 0 at $DIR/simplify-locals.rs:+3:20: +3:26 +- let mut _3: &[u8; 10]; // in scope 0 at $DIR/simplify-locals.rs:+3:20: +3:26 +- let _4: &[u8; 10]; // in scope 0 at $DIR/simplify-locals.rs:+3:20: +3:26 + scope 1 { + debug bytes => _1; // in scope 1 at $DIR/simplify-locals.rs:+1:9: +1:14 + scope 2 { + } + } + + bb0: { + StorageLive(_1); // scope 0 at $DIR/simplify-locals.rs:+1:9: +1:14 + _1 = [const 0_u8; 10]; // scope 0 at $DIR/simplify-locals.rs:+1:17: +1:26 +- StorageLive(_2); // scope 1 at $DIR/simplify-locals.rs:+3:20: +3:26 +- StorageLive(_3); // scope 1 at $DIR/simplify-locals.rs:+3:20: +3:26 +- StorageLive(_4); // scope 1 at $DIR/simplify-locals.rs:+3:20: +3:26 +- _4 = &_1; // scope 1 at $DIR/simplify-locals.rs:+3:20: +3:26 +- _3 = &(*_4); // scope 1 at $DIR/simplify-locals.rs:+3:20: +3:26 +- _2 = move _3 as &[u8] (Pointer(Unsize)); // scope 1 at $DIR/simplify-locals.rs:+3:20: +3:26 +- StorageDead(_3); // scope 1 at $DIR/simplify-locals.rs:+3:25: +3:26 +- StorageDead(_4); // scope 1 at $DIR/simplify-locals.rs:+3:26: +3:27 +- StorageDead(_2); // scope 1 at $DIR/simplify-locals.rs:+3:26: +3:27 + _0 = const (); // scope 0 at $DIR/simplify-locals.rs:+0:8: +4:2 + StorageDead(_1); // scope 0 at $DIR/simplify-locals.rs:+4:1: +4:2 + return; // scope 0 at $DIR/simplify-locals.rs:+4:2: +4:2 + } + } + |