Skip to content

Commit 0f66af4

Browse files
authored
Merge pull request #3497 from linux-on-ibm-z/master-s390x
Fix PersistentVector test for s390x
2 parents 4b6a572 + 7080a54 commit 0f66af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validation-test/stdlib/Prototypes/PersistentVector.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ struct _${name}Bitmap {
198198
% if underlyingType == 'UInt':
199199
#if arch(i386) || arch(arm)
200200
return Int(Builtin.int_ctpop_Int32(_bits._value))
201-
#elseif arch(x86_64) || arch(arm64) || arch(powerpc64) || arch(powerpc64le)
201+
#elseif arch(x86_64) || arch(arm64) || arch(powerpc64) || arch(powerpc64le) || arch(s390x)
202202
return Int(Builtin.int_ctpop_Int64(_bits._value))
203203
#endif
204204
% elif underlyingType == 'UInt32':

0 commit comments

Comments
 (0)