Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a99f70b
Clarify zero-value behavior of `ctlz`/`cttz` intrinsics.
frewsxcv Dec 11, 2016
0ab7812
Clarify behavior of `VecDeque::insert`.
frewsxcv Dec 23, 2016
73bb063
Detect double reference when applying binary op
estebank Jun 23, 2016
98218b3
Ensure type is copyable before emitting note suggesting adding manual…
pnkfelix Dec 26, 2016
51b655e
std: Remove unused objects from compiler-builtins
alexcrichton Dec 26, 2016
a52f257
Fix doc for `escape_debug`
bombless Dec 27, 2016
dfb6ae6
Test for appropriate span on second custom derive
estebank Dec 25, 2016
ca9b07b
Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_da…
apasel422 Dec 28, 2016
ae23f03
Doc fix
minaguib Jan 3, 2017
031dd81
fix help for the --print option
cardoe Jan 4, 2017
07e844f
Add more docs for CoerceUnsized and Unsize
Manishearth Jan 4, 2017
893f42a
book: use abort() over loop {} for panic
Dec 3, 2016
521d337
Rollup merge of #38138 - rkruppe:no_std-no_loop, r=steveklabnik
steveklabnik Jan 4, 2017
0164b3f
Rollup merge of #38310 - frewsxcv:ctlz-cttz, r=pnkfelix
steveklabnik Jan 4, 2017
9226613
Rollup merge of #38581 - frewsxcv:vecdequeue-insert, r=GuillaumeGomez
steveklabnik Jan 4, 2017
e3a6bdb
Rollup merge of #38607 - estebank:test-for-36935, r=petrochenkov
steveklabnik Jan 4, 2017
30df598
Rollup merge of #38617 - pnkfelix:double-reference, r=pnkfelix
steveklabnik Jan 4, 2017
72a90b3
Rollup merge of #38623 - alexcrichton:less-osx-warnings, r=aturon
steveklabnik Jan 4, 2017
6bc17bf
Rollup merge of #38629 - bombless:patch-4, r=petrochenkov
steveklabnik Jan 4, 2017
c0c7941
Rollup merge of #38664 - apasel422:may-dangle, r=pnkfelix
steveklabnik Jan 4, 2017
1d72dd9
Rollup merge of #38799 - minaguib:patch-1, r=steveklabnik
steveklabnik Jan 4, 2017
e9068c6
Rollup merge of #38815 - cardoe:fix-print, r=nikomatsakis
steveklabnik Jan 4, 2017
6316e43
Rollup merge of #38816 - Manishearth:coercion-doc, r=GuillaumeGomez
steveklabnik Jan 4, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/libcompiler_builtins/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,12 @@ fn main() {

if !target.contains("ios") {
sources.extend(&["absvti2.c",
"addtf3.c",
"addvti3.c",
"ashlti3.c",
"ashrti3.c",
"clzti2.c",
"cmpti2.c",
"ctzti2.c",
"divtf3.c",
"divti3.c",
"ffsti2.c",
"fixdfti.c",
Expand All @@ -216,17 +214,13 @@ fn main() {
"floatuntixf.c",
"lshrti3.c",
"modti3.c",
"multf3.c",
"multi3.c",
"mulvti3.c",
"negti2.c",
"negvti2.c",
"parityti2.c",
"popcountti2.c",
"powitf2.c",
"subtf3.c",
"subvti3.c",
"trampoline_setup.c",
"ucmpti2.c",
"udivmodti4.c",
"udivti3.c",
Expand Down