<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/mir-opt/basic_assignment.main.SimplifyCfg-initial.after.mir, branch master</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=master</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2023-01-11T09:32:08+00:00</updated>
<entry>
<title>Move /src/test to /tests</title>
<updated>2023-01-11T09:32:08+00:00</updated>
<author>
<name>Albert Larsan</name>
<email>74931857+albertlarsan68@users.noreply.github.com</email>
</author>
<published>2023-01-05T08:13:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cf2dff2b1e3fa55fa5415d524200070d0d7aacfe'/>
<id>urn:sha1:cf2dff2b1e3fa55fa5415d524200070d0d7aacfe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>bless mir opt tests</title>
<updated>2022-07-28T12:24:44+00:00</updated>
<author>
<name>Nilstrieb</name>
<email>48135649+Nilstrieb@users.noreply.github.com</email>
</author>
<published>2022-07-27T18:47:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=11c0280798da8f4d65dec25764237d2354e65273'/>
<id>urn:sha1:11c0280798da8f4d65dec25764237d2354e65273</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update mir dumps</title>
<updated>2022-05-21T06:13:17+00:00</updated>
<author>
<name>lcnr</name>
<email>rust@lcnr.de</email>
</author>
<published>2022-05-20T12:52:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1fcbf0c3681fa652c62c3e1d3fbd79dfcc3d1d48'/>
<id>urn:sha1:1fcbf0c3681fa652c62c3e1d3fbd79dfcc3d1d48</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix diagnostic issue when using FakeReads in closures</title>
<updated>2021-04-02T23:11:50+00:00</updated>
<author>
<name>Roxane</name>
<email>roxane.fruytier@hotmail.com</email>
</author>
<published>2021-03-26T03:03:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2fb1fb7634b79d93d48749ee1f84d4ba552b186f'/>
<id>urn:sha1:2fb1fb7634b79d93d48749ee1f84d4ba552b186f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Use `record_operands_moved` more aggresively"</title>
<updated>2021-02-05T02:29:50+00:00</updated>
<author>
<name>Felix S. Klock II</name>
<email>pnkfelix@pnkfx.org</email>
</author>
<published>2021-01-22T03:38:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bed69c613471cf0717f1664003ccf714168eec95'/>
<id>urn:sha1:bed69c613471cf0717f1664003ccf714168eec95</id>
<content type='text'>
This reverts commit 7f3e8551dde7f14641618cdb8fda2f99ff1d74b6.
</content>
</entry>
<entry>
<title>Use `record_operands_moved` more aggresively</title>
<updated>2020-12-04T22:22:52+00:00</updated>
<author>
<name>Matthew Jasper</name>
<email>mjjasper1@gmail.com</email>
</author>
<published>2020-10-24T10:18:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7f3e8551dde7f14641618cdb8fda2f99ff1d74b6'/>
<id>urn:sha1:7f3e8551dde7f14641618cdb8fda2f99ff1d74b6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bless mir-opt tests</title>
<updated>2020-10-04T11:54:02+00:00</updated>
<author>
<name>Aaron Hill</name>
<email>aa1ronham@gmail.com</email>
</author>
<published>2020-10-02T20:11:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=33337bb855d453c0077764f6a5488b3ff109b6f5'/>
<id>urn:sha1:33337bb855d453c0077764f6a5488b3ff109b6f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>pretty: trim paths of unique symbols</title>
<updated>2020-09-02T19:26:37+00:00</updated>
<author>
<name>Dan Aloni</name>
<email>alonid@gmail.com</email>
</author>
<published>2020-09-02T07:40:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=07e7823c01be1733df2480de19fbbe6b8e9384cf'/>
<id>urn:sha1:07e7823c01be1733df2480de19fbbe6b8e9384cf</id>
<content type='text'>
If a symbol name can only be imported from one place for a type, and
as long as it was not glob-imported anywhere in the current crate, we
can trim its printed path and print only the name.

This has wide implications on error messages with types, for example,
shortening `std::vec::Vec` to just `Vec`, as long as there is no other
`Vec` importable anywhere.

This adds a new '-Z trim-diagnostic-paths=false' option to control this
feature.

On the good path, with no diagnosis printed, we should try to avoid
issuing this query, so we need to prevent trimmed_def_paths query on
several cases.

This change also relies on a previous commit that differentiates
between `Debug` and `Display` on various rustc types, where the latter
is trimmed and presented to the user and the former is not.
</content>
</entry>
<entry>
<title>Suppress MIR comments of Unit type</title>
<updated>2020-08-20T09:32:35+00:00</updated>
<author>
<name>Lzu Tao</name>
<email>taolzu@gmail.com</email>
</author>
<published>2020-08-20T09:25:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=86cf46172ff10673e4470e93a8b2d4974bf35f3c'/>
<id>urn:sha1:86cf46172ff10673e4470e93a8b2d4974bf35f3c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update MIR tests with comment verbosity fix</title>
<updated>2020-08-17T21:29:48+00:00</updated>
<author>
<name>Austin Lasher</name>
<email>austinlasher@gmail.com</email>
</author>
<published>2020-08-15T17:04:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=28ac141b72053ae21c9337e761ef339803c958df'/>
<id>urn:sha1:28ac141b72053ae21c9337e761ef339803c958df</id>
<content type='text'>
</content>
</entry>
</feed>
