authorgravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2019-02-15 17:37:55+13:00
committergravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2019-02-15 17:37:55+13:00
log170ec504ec3201a89cb8121ea59e5d845f5cd1d1
tree2bf85ab45d63aaf5c41b53a3b7c5b51435853a85
parent18ad50970f81bd4b07892a6651487be81effc4c7

Use official llvm mirror for compiler-rt commit ref


2 files changed, 3 insertions(+), 3 deletions(-)

std/special/compiler_rt/addXf3.zig+1-1
...@@ -1,6 +1,6 @@...@@ -1,6 +1,6 @@
1// Ported from:1// Ported from:
2//2//
3// https://github.com/llvm-mirror/compiler-rt/blob/92f7768ce940f6437b32ecc0985a1446cd040f7a/lib/builtins/fp_add_impl.inc3// https://github.com/llvm/llvm-project/blob/02d85149a05cb1f6dc49f0ba7a2ceca53718ae17/compiler-rt/lib/builtins/fp_add_impl.inc
44
5const std = @import("std");5const std = @import("std");
6const builtin = @import("builtin");6const builtin = @import("builtin");
std/special/compiler_rt/addXf3_test.zig+2-2
...@@ -1,7 +1,7 @@...@@ -1,7 +1,7 @@
1// Ported from:1// Ported from:
2//2//
3// https://github.com/llvm-mirror/compiler-rt/blob/92f7768ce940f6437b32ecc0985a1446cd040f7a/test/builtins/Unit/addtf3_test.c3// https://github.com/llvm/llvm-project/blob/02d85149a05cb1f6dc49f0ba7a2ceca53718ae17/compiler-rt/test/builtins/Unit/addtf3_test.c
4// https://github.com/llvm-mirror/compiler-rt/blob/92f7768ce940f6437b32ecc0985a1446cd040f7a/test/builtins/Unit/subtf3_test.c4// https://github.com/llvm/llvm-project/blob/02d85149a05cb1f6dc49f0ba7a2ceca53718ae17/compiler-rt/test/builtins/Unit/subtf3_test.c
55
6const qnan128 = @bitCast(f128, u128(0x7fff800000000000) << 64);6const qnan128 = @bitCast(f128, u128(0x7fff800000000000) << 64);
7const inf128 = @bitCast(f128, u128(0x7fff000000000000) << 64);7const inf128 = @bitCast(f128, u128(0x7fff000000000000) << 64);