-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated all use of error(...), which has been removed upstream, to a pair of LogError(...) and "return false".
- Loading branch information
Showing
119 changed files
with
2,053 additions
and
974 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,9 @@ | |
export LC_ALL=C.UTF-8 | ||
|
||
export HOST=x86_64-apple-darwin | ||
export PIP_PACKAGES="zmq" | ||
# Homebrew's [email protected] is marked as externally managed (PEP 668). | ||
# Therefore, `--break-system-packages` is needed. | ||
export PIP_PACKAGES="--break-system-packages zmq" | ||
export GOAL="install" | ||
export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports" | ||
export CI_OS_NAME="macos" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,14 +168,19 @@ Based on a patch originally by Claude Heiland-Allen <[email protected]> | |
default: | ||
gcc_unreachable (); | ||
} | ||
--- a/gcc/config/i386/i386.c | ||
+++ b/gcc/config/i386/i386.c | ||
@@ -4981,13 +4981,13 @@ | ||
switch (type) | ||
--- a/gcc/config/i386/i386.cc | ||
+++ b/gcc/config/i386/i386.cc | ||
@@ -5418,17 +5418,15 @@ ix86_get_ssemov (rtx *operands, unsigned size, | ||
{ | ||
case opcode_int: | ||
- opcode = misaligned_p ? "vmovdqu32" : "vmovdqa32"; | ||
+ opcode = "vmovdqu32"; | ||
if (scalar_mode == E_HFmode) | ||
- opcode = (misaligned_p | ||
- ? (TARGET_AVX512BW ? "vmovdqu16" : "vmovdqu64") | ||
- : "vmovdqa64"); | ||
+ opcode = TARGET_AVX512BW ? "vmovdqu16" : "vmovdqu64"; | ||
else | ||
- opcode = misaligned_p ? "vmovdqu32" : "vmovdqa32"; | ||
+ opcode = "vmovdqu32"; | ||
break; | ||
case opcode_float: | ||
- opcode = misaligned_p ? "vmovups" : "vmovaps"; | ||
|
@@ -187,9 +192,24 @@ Based on a patch originally by Claude Heiland-Allen <[email protected]> | |
break; | ||
} | ||
} | ||
@@ -4996,16 +4996,16 @@ | ||
switch (scalar_mode) | ||
@@ -5438,29 +5436,21 @@ ix86_get_ssemov (rtx *operands, unsigned size, | ||
{ | ||
case E_HFmode: | ||
if (evex_reg_p) | ||
- opcode = (misaligned_p | ||
- ? (TARGET_AVX512BW | ||
- ? "vmovdqu16" | ||
- : "vmovdqu64") | ||
- : "vmovdqa64"); | ||
+ opcode = TARGET_AVX512BW ? "vmovdqu16" : "vmovdqu64"; | ||
else | ||
- opcode = (misaligned_p | ||
- ? (TARGET_AVX512BW | ||
- ? "vmovdqu16" | ||
- : "%vmovdqu") | ||
- : "%vmovdqa"); | ||
+ opcode = TARGET_AVX512BW ? "vmovdqu16" : "%vmovdqu"; | ||
break; | ||
case E_SFmode: | ||
- opcode = misaligned_p ? "%vmovups" : "%vmovaps"; | ||
+ opcode = "%vmovups"; | ||
|
@@ -208,7 +228,7 @@ Based on a patch originally by Claude Heiland-Allen <[email protected]> | |
break; | ||
default: | ||
gcc_unreachable (); | ||
@@ -5017,48 +5017,32 @@ | ||
@@ -5472,48 +5462,32 @@ ix86_get_ssemov (rtx *operands, unsigned size, | ||
{ | ||
case E_QImode: | ||
if (evex_reg_p) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Additional flags "in" and "out" have been added to `-whitelist` to control whether | ||
permissions apply to incoming connections and/or manual (default: incoming only). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
P2P | ||
--- | ||
|
||
UNIX domain sockets can now be used for proxy connections. Set `-onion` or `-proxy` | ||
to the local socket path with the prefix `unix:` (e.g. `-onion=unix:/home/me/torsocket`). | ||
(#27375) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.