Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9dee590
Rearrange the pipeline of `pow` to gain efficiency
Neutron3529 Jul 15, 2020
ebafab9
delete an unnecessary semicolon...
Neutron3529 Jul 16, 2020
020c0b5
delete trailing whitespace
Neutron3529 Jul 16, 2020
8f58ce4
Sorry for the missing...
Neutron3529 Jul 16, 2020
f3d476b
add extra tests
Neutron3529 Jul 16, 2020
8795845
add extra tests.
Neutron3529 Jul 16, 2020
319db30
add pow(2) to negative exp
Neutron3529 Jul 16, 2020
e2f3e3c
add whitespace.
Neutron3529 Jul 16, 2020
d5d7ca2
add whitespace
Neutron3529 Jul 16, 2020
7599e01
add whitespace
Neutron3529 Jul 16, 2020
364cacb
delete extra line
Neutron3529 Jul 16, 2020
6100b74
Advertise correct stable version for const control flow
ecstatic-morse Jun 29, 2020
4fb260b
Guard against non-monomorphized type_id intrinsic call
nbdd0121 Jul 4, 2020
4c69d4b
Add the aarch64-apple-darwin target
shepmaster Jul 11, 2020
804241e
Update dependencies that have knowledge about aarch64-apple-darwin
shepmaster Jul 11, 2020
b3340b5
Expand test to cover type_name and monomorphic use
nbdd0121 Jul 21, 2020
430bd39
Do not ICE on assoc type with bad placeholder
JohnTitor Jul 22, 2020
747bc8e
Enable perf try builder
Mark-Simulacrum Jul 21, 2020
49b9a64
rustc_target: Add a target spec option for disabling `--eh-frame-hdr`
petrochenkov Jul 22, 2020
4b05202
build: Remove unnecessary `cargo:rerun-if-env-changed` annotations
petrochenkov Jul 22, 2020
0b662c2
build: Remove unnecessary `build = "build.rs"` annotations
petrochenkov Jul 22, 2020
461c576
build: Harden env var tracking in build scripts
petrochenkov Jul 22, 2020
7be36a8
build: Avoid unnecessary build script reruns in libstd
petrochenkov Jul 22, 2020
a378252
Rollup merge of #73868 - ecstatic-morse:fix-stable-version, r=jonas-s…
Manishearth Jul 22, 2020
83e5b5e
Rollup merge of #74367 - Neutron3529:patch-1, r=nagisa
Manishearth Jul 22, 2020
26dbd93
Rollup merge of #74538 - nbdd0121:issue-73976, r=lcnr
Manishearth Jul 22, 2020
48fbdbd
Rollup merge of #74541 - shepmaster:aarch64-apple-darwin-target, r=na…
Manishearth Jul 22, 2020
741988c
Rollup merge of #74600 - Mark-Simulacrum:try-perf, r=pietroalbini
Manishearth Jul 22, 2020
f30d4a0
Rollup merge of #74618 - JohnTitor:no-more-bad-placeholder, r=estebank
Manishearth Jul 22, 2020
05df78f
Rollup merge of #74631 - petrochenkov:ehdr2, r=jonas-schievink
Manishearth Jul 22, 2020
4e97de0
Rollup merge of #74643 - petrochenkov:noenvrerun, r=Mark-Simulacrum
Manishearth Jul 22, 2020
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
Prev Previous commit
Next Next commit
delete extra line
  • Loading branch information
Neutron3529 authored Jul 16, 2020
commit 364cacb5840c1d96a8b4c1f4d62652200c57470d
1 change: 0 additions & 1 deletion src/libcore/tests/num/int_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ macro_rules! int_module {
assert_eq!($T::from_str_radix("-9", 2).ok(), None::<$T>);
}


#[test]
fn test_pow() {
let mut r = 2 as $T;
Expand Down