File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ public struct FloatType: IRType {
38
38
}
39
39
40
40
/// 16-bit floating point value in the global context
41
- static let half = FloatType ( kind: . half)
41
+ public static let half = FloatType ( kind: . half)
42
42
/// 32-bit floating point value in the global context
43
- static let float = FloatType ( kind: . float)
43
+ public static let float = FloatType ( kind: . float)
44
44
/// 64-bit floating point value in the global context
45
- static let double = FloatType ( kind: . double)
45
+ public static let double = FloatType ( kind: . double)
46
46
/// 80-bit floating point value (X87) in the global context
47
- static let x86FP80 = FloatType ( kind: . x86FP80)
47
+ public static let x86FP80 = FloatType ( kind: . x86FP80)
48
48
/// 128-bit floating point value (112-bit mantissa) in the global context
49
- static let fp128 = FloatType ( kind: . fp128)
49
+ public static let fp128 = FloatType ( kind: . fp128)
50
50
/// 128-bit floating point value (two 64-bits) in the global context
51
- static let ppcFP128 = FloatType ( kind: . ppcFP128)
51
+ public static let ppcFP128 = FloatType ( kind: . ppcFP128)
52
52
53
53
/// Creates a constant floating value of this type from a Swift `Double` value.
54
54
public func constant( _ value: Double ) -> Constant < Floating > {
You can’t perform that action at this time.
0 commit comments