summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/tls_access.main.PreCodegen.after.mir
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /tests/mir-opt/tls_access.main.PreCodegen.after.mir
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/mir-opt/tls_access.main.PreCodegen.after.mir')
-rw-r--r--tests/mir-opt/tls_access.main.PreCodegen.after.mir34
1 files changed, 17 insertions, 17 deletions
diff --git a/tests/mir-opt/tls_access.main.PreCodegen.after.mir b/tests/mir-opt/tls_access.main.PreCodegen.after.mir
index 09453b8ba..43c7051f0 100644
--- a/tests/mir-opt/tls_access.main.PreCodegen.after.mir
+++ b/tests/mir-opt/tls_access.main.PreCodegen.after.mir
@@ -1,28 +1,28 @@
// MIR for `main` after PreCodegen
fn main() -> () {
- let mut _0: (); // return place in scope 0 at $DIR/tls_access.rs:+0:11: +0:11
- let _2: *mut u8; // in scope 0 at $DIR/tls_access.rs:+2:18: +2:21
- let mut _3: *mut u8; // in scope 0 at $DIR/tls_access.rs:+3:9: +3:12
+ let mut _0: ();
+ let _1: *mut u8;
+ let mut _3: *mut u8;
scope 1 {
- let _1: &u8; // in scope 1 at $DIR/tls_access.rs:+2:13: +2:14
+ let _2: &u8;
scope 2 {
- debug a => _1; // in scope 2 at $DIR/tls_access.rs:+2:13: +2:14
+ debug a => _2;
}
}
bb0: {
- StorageLive(_1); // scope 1 at $DIR/tls_access.rs:+2:13: +2:14
- StorageLive(_2); // scope 1 at $DIR/tls_access.rs:+2:18: +2:21
- _2 = &/*tls*/ mut FOO; // scope 1 at $DIR/tls_access.rs:+2:18: +2:21
- _1 = &(*_2); // scope 1 at $DIR/tls_access.rs:+2:17: +2:21
- StorageLive(_3); // scope 2 at $DIR/tls_access.rs:+3:9: +3:12
- _3 = &/*tls*/ mut FOO; // scope 2 at $DIR/tls_access.rs:+3:9: +3:12
- (*_3) = const 42_u8; // scope 2 at $DIR/tls_access.rs:+3:9: +3:17
- StorageDead(_3); // scope 2 at $DIR/tls_access.rs:+3:17: +3:18
- _0 = const (); // scope 1 at $DIR/tls_access.rs:+1:5: +4:6
- StorageDead(_2); // scope 1 at $DIR/tls_access.rs:+4:5: +4:6
- StorageDead(_1); // scope 1 at $DIR/tls_access.rs:+4:5: +4:6
- return; // scope 0 at $DIR/tls_access.rs:+5:2: +5:2
+ StorageLive(_2);
+ StorageLive(_1);
+ _1 = &/*tls*/ mut FOO;
+ _2 = &(*_1);
+ StorageLive(_3);
+ _3 = &/*tls*/ mut FOO;
+ (*_3) = const 42_u8;
+ StorageDead(_3);
+ _0 = const ();
+ StorageDead(_1);
+ StorageDead(_2);
+ return;
}
}