File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -212,16 +212,16 @@ PrintTests.test("Printable") {
212
212
expectDebugPrinted ( " inf " , Float . infinity)
213
213
expectDebugPrinted ( " -inf " , - Float. infinity)
214
214
expectDebugPrinted ( " nan " , Float . nan)
215
- #if !arch(armv7 )
215
+ #if !arch(arm )
216
216
expectDebugPrinted ( " -nan " , - Float. nan)
217
217
#endif
218
218
expectDebugPrinted ( " nan(0xffff) " , Float ( nan: 65535 , signaling: false ) )
219
- #if !arch(armv7 )
219
+ #if !arch(arm )
220
220
expectDebugPrinted ( " -nan(0xffff) " , - Float( nan: 65535 , signaling: false ) ) // fail
221
221
#endif
222
222
expectDebugPrinted ( " nan(0x1fffff) " , Float ( bitPattern: 0x7fff_ffff ) )
223
223
expectDebugPrinted ( " nan(0x1fffff) " , Float ( bitPattern: 0x7fdf_ffff ) )
224
- #if !arch(i386) && !arch(armv7 )
224
+ #if !arch(i386) && !arch(arm )
225
225
expectDebugPrinted ( " snan " , Float . signalingNaN)
226
226
expectDebugPrinted ( " snan(0xffff) " , Float ( nan: 65535 , signaling: true ) )
227
227
expectDebugPrinted ( " -snan(0xffff) " , - Float( nan: 65535 , signaling: true ) )
You can’t perform that action at this time.
0 commit comments