forked from domob1812/namecoin-core
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
391 additions
and
351 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
commit 6537181f59ed186a341db621812a6bc35e22eaf6 | ||
Author: fanquake <[email protected]> | ||
Date: Wed Apr 10 12:15:52 2024 +0200 | ||
|
||
build: turn on -muse-unaligned-vector-move by default | ||
|
||
This allows us to avoid (more invasively) patching GCC, to avoid | ||
unaligned instruction use. | ||
|
||
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c | ||
index e0632681477..14a9653abdf 100644 | ||
--- a/gas/config/tc-i386.c | ||
+++ b/gas/config/tc-i386.c | ||
@@ -801,7 +801,7 @@ static unsigned int no_cond_jump_promotion = 0; | ||
static unsigned int sse2avx; | ||
|
||
/* Encode aligned vector move as unaligned vector move. */ | ||
-static unsigned int use_unaligned_vector_move; | ||
+static unsigned int use_unaligned_vector_move = 1; | ||
|
||
/* Encode scalar AVX instructions with specific vector length. */ | ||
static enum |
Oops, something went wrong.