Re: [swift-dev] Rationalizing FloatingPoint conformance to Equatable

2017-10-27 Thread Jonathan Hull via swift-dev
> On Oct 26, 2017, at 11:44 PM, Xiaodi Wu wrote: > > On Fri, Oct 27, 2017 at 1:30 AM, Jonathan Hull > wrote: > One completely different idea, which I brought up a year or so ago, is to do > what we do with pointers around this. That is you have your fast/unsafe IEEE >

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 14.04 (master) #1315

2017-10-27 Thread Xi Ge via swift-dev
The following builds are fine. -- Xi > On Oct 26, 2017, at 11:44 PM, no-re...@swift.org wrote: > > [FAILURE] oss-swift-incremental-RA-linux-ubuntu-14_04 [#1315] > > Build URL: > https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-14_04/1315/ >

Re: [swift-dev] Rationalizing FloatingPoint conformance to Equatable

2017-10-27 Thread David Sweeris via swift-dev
> On Oct 27, 2017, at 3:06 AM, Jonathan Hull via swift-dev > wrote: > >> >> On Oct 26, 2017, at 11:44 PM, Xiaodi Wu > > wrote: >> >> On Fri, Oct 27, 2017 at 1:30 AM, Jonathan Hull > > wrote: >> One completely different idea, which I brought u

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 16.04 (master) #1231

2017-10-27 Thread Arnold via swift-dev
Some libdispatch craziness ... not my patch. error: Can not open file ... module.modulemap: No such file or directory > On Oct 27, 2017, at 2:04 PM, no-re...@swift.org wrote: > > [FAILURE] oss-swift-incremental-RA-linux-ubuntu-16_04 [#1231] > > Build URL: > https://ci.swift.org/job/oss-swif

Re: [swift-dev] "For" loop iterator and "enum"

2017-10-27 Thread Joe Groff via swift-dev
> On Oct 24, 2017, at 8:32 AM, Sam Ding via swift-dev > wrote: > > Hi, > > It is found that "for" loop iterate and "enum" does not work on s390x. > Here is a sample code: > enum IntKey : Int { > case a = 3 > case b = 4 // Implicitly 4 > case c = 1 > } > for ( a1, a2) in [(IntKey.a, 1)] { > pr