File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
branches/master-rebranch/stdlib/public/SwiftShims Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1457,4 +1457,4 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-08-02-a: ddd2b2976aa9bfde5f20fe37f6bd2
1457
1457
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-08-03-a: 171cc166f2abeb5ca2a4003700a8a78a108bd300
1458
1458
refs/heads/benlangmuir-patch-1: baaebaf39d52f3bf36710d4fe40cf212e996b212
1459
1459
refs/heads/i-do-redeclare: 8c4e6d5de5c1e3f0a2cedccf319df713ea22c48e
1460
- refs/heads/master-rebranch: 6aaee7a11c3ffe34fbd12d1bda13076a1587d870
1460
+ refs/heads/master-rebranch: 4c24e5bf582df8e9dbd2dd45082657da4cd280d4
Original file line number Diff line number Diff line change @@ -213,7 +213,11 @@ float _swift_stdlib_log1pf(float x) {
213
213
214
214
static inline SWIFT_ALWAYS_INLINE
215
215
float _swift_stdlib_hypotf (float x, float y) {
216
+ #if defined(_WIN32)
217
+ return _hypotf (x, y);
218
+ #else
216
219
return __builtin_hypotf (x, y);
220
+ #endif
217
221
}
218
222
219
223
static inline SWIFT_ALWAYS_INLINE
You can’t perform that action at this time.
0 commit comments