Skip to content

Commit 7424dbb

Browse files
alexalex
authored andcommitted
2 parents 2c8f88f + 46bff72 commit 7424dbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/scrypt-arm.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010

11-
#if defined(__arm__) && defined(__APCS_32__)
11+
#if defined(OPTIMIZED_SALSA) && defined(__arm__) && defined(__APCS_32__)
1212

1313
#if defined(__linux__) && defined(__ELF__)
1414
.section .note.GNU-stack,"",%progbits

src/scrypt-x86.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2323
# SUCH DAMAGE.
2424

25-
#if defined(__i386__)
25+
#if defined(OPTIMIZED_SALSA) && defined(__i386__)
2626

2727
#if defined(__linux__) && defined(__ELF__)
2828
.section .note.GNU-stack,"",%progbits

src/scrypt-x86_64.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# SUCH DAMAGE.
2424

2525

26-
#if defined(__x86_64__)
26+
#if defined(OPTIMIZED_SALSA) && defined(__x86_64__)
2727

2828
#if defined(__linux__) && defined(__ELF__)
2929
.section .note.GNU-stack,"",%progbits

0 commit comments

Comments
 (0)