Skip to content

Commit 9af6321

Browse files
committed
Fix PersistentVector test for powerpc64{le}
This test has a check for 32/64bit, include powerpc64{le} in this check. Signed-off-by: Russell Currey <[email protected]>
1 parent a16a063 commit 9af6321

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)
201+
#elseif arch(x86_64) || arch(arm64) || arch(powerpc64) || arch(powerpc64le)
202202
return Int(Builtin.int_ctpop_Int64(_bits._value))
203203
#endif
204204
% elif underlyingType == 'UInt32':

0 commit comments

Comments
 (0)