Skip to content

Commit 7080a54

Browse files
committed
Fix PersistentVector test for s390x
1 parent 56040ef commit 7080a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
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)