<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/compiler/rustc_codegen_llvm/src/allocator.rs, branch 1.54.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.54.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.54.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2021-02-17T10:25:55+00:00</updated>
<entry>
<title>Remove redundant to_string calls</title>
<updated>2021-02-17T10:25:55+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2021-02-17T09:46:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=003670748f88d22e19b449db4e24b35739b9e984'/>
<id>urn:sha1:003670748f88d22e19b449db4e24b35739b9e984</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Collapse all uses of `target.options.foo` into `target.foo`</title>
<updated>2020-11-08T14:29:13+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2020-11-08T11:27:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bf66988aa1677d018928c271fed563792f921d28'/>
<id>urn:sha1:bf66988aa1677d018928c271fed563792f921d28</id>
<content type='text'>
with an eye on merging `TargetOptions` into `Target`.

`TargetOptions` as a separate structure is mostly an implementation detail of `Target` construction, all its fields logically belong to `Target` and available from `Target` through `Deref` impls.
</content>
</entry>
<entry>
<title>Fix even more clippy warnings</title>
<updated>2020-10-30T14:13:39+00:00</updated>
<author>
<name>Joshua Nelson</name>
<email>jyn514@gmail.com</email>
</author>
<published>2020-10-27T01:02:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=57c6ed0c07aaea9c89a192e54b3274464ebe6fbf'/>
<id>urn:sha1:57c6ed0c07aaea9c89a192e54b3274464ebe6fbf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace target.target with target and target.ptr_width with target.pointer_width</title>
<updated>2020-10-15T10:02:24+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2020-10-15T09:44:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4fa55787745ac71793253c47c4d6cd5ffe96b741'/>
<id>urn:sha1:4fa55787745ac71793253c47c4d6cd5ffe96b741</id>
<content type='text'>
Preparation for a subsequent change that replaces
rustc_target::config::Config with its wrapped Target.

On its own, this commit breaks the build. I don't like making
build-breaking commits, but in this instance I believe that it
makes review easier, as the "real" changes of this PR can be
seen much more easily.

Result of running:

find compiler/ -type f -exec sed -i -e 's/target\.target\([)\.,; ]\)/target\1/g' {} \;
find compiler/ -type f -exec sed -i -e 's/target\.target$/target/g' {} \;
find compiler/ -type f -exec sed -i -e 's/target.ptr_width/target.pointer_width/g' {} \;
./x.py fmt
</content>
</entry>
<entry>
<title>Rename target_pointer_width to pointer_width and turn it into an u32</title>
<updated>2020-10-15T10:02:23+00:00</updated>
<author>
<name>est31</name>
<email>MTest31@outlook.com</email>
</author>
<published>2020-10-14T16:22:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0d1aa1e0346630189b779da0939e8138a8e6d668'/>
<id>urn:sha1:0d1aa1e0346630189b779da0939e8138a8e6d668</id>
<content type='text'>
Rename target_pointer_width to pointer_width because it is already
member of the Target struct.

The compiler supports only three valid values for target_pointer_width:
16, 32, 64. Thus it can safely be turned into an int.
This means less allocations and clones as well as easier handling of the type.
</content>
</entry>
<entry>
<title>Implement Make `handle_alloc_error` default to panic (for no_std + liballoc)</title>
<updated>2020-10-02T07:00:29+00:00</updated>
<author>
<name>Harald Hoyer</name>
<email>harald@redhat.com</email>
</author>
<published>2020-09-07T08:45:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cadd12b5f020b9b2c7bb0c5e7078b81fbdcfb6d8'/>
<id>urn:sha1:cadd12b5f020b9b2c7bb0c5e7078b81fbdcfb6d8</id>
<content type='text'>
Related: https://github.com/rust-lang/rust/issues/66741

Guarded with `#![feature(default_alloc_error_handler)]` a default
`alloc_error_handler` is called, if a custom allocator is used and no
other custom `#[alloc_error_handler]` is defined.

The panic message does not contain the size anymore, because it would
pull in the fmt machinery, which would blow up the code size
significantly.
</content>
</entry>
<entry>
<title>mv compiler to compiler/</title>
<updated>2020-08-30T15:45:07+00:00</updated>
<author>
<name>mark</name>
<email>markm@cs.wisc.edu</email>
</author>
<published>2020-08-28T03:58:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9e5f7d5631b8f4009ac1c693e585d4b7108d4275'/>
<id>urn:sha1:9e5f7d5631b8f4009ac1c693e585d4b7108d4275</id>
<content type='text'>
</content>
</entry>
</feed>
