Skip to content

Commit ac30c67

Browse files
committed
Revert the risky part of the change until I can investigate a bot failure report. The error below sounds like a genuine bug, though not one that I saw, but other errors didn't seem connected to my change.
/Users/buildslave/jenkins/workspace/swift_tools-RA_stdlib-RD/megaclang/src/tools/swift/validation-test/stdlib/NumericDiagnostics.swift.gyb:29:33: error: expected diagnostic not produced x1_UInt8 * x2_Float80 // expected-error{{ }} Swift SVN r24238
1 parent c5ebf4f commit ac30c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: utils/SwiftIntTypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def all_integer_type_names():
7878
return [self_ty.stdlib_name for self_ty in all_integer_types(0)]
7979

8080
def all_real_number_type_names():
81-
return ['Float', 'Double', 'Float80'] # Float80 for i386 & x86_64
81+
return ['Float', 'Double'] #FIXME , 'Float80' Revert until I figure out a test failure # Float80 for i386 & x86_64
8282

8383
def all_numeric_type_names():
8484
return all_integer_type_names() + all_real_number_type_names()

0 commit comments

Comments
 (0)