File tree 3 files changed +89
-89
lines changed
3 files changed +89
-89
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public protocol IRType {
11
11
12
12
public extension IRType {
13
13
/// Returns the special `null` value for this type.
14
- public func null( ) -> IRConstant {
14
+ func null( ) -> IRConstant {
15
15
return Constant < Struct > ( llvm: LLVMConstNull ( asLLVM ( ) ) )
16
16
}
17
17
@@ -20,18 +20,18 @@ public extension IRType {
20
20
/// The `undef` value can be used anywhere a constant is expected, and
21
21
/// indicates that the user of the value may receive an unspecified
22
22
/// bit-pattern.
23
- public func undef( ) -> IRValue {
23
+ func undef( ) -> IRValue {
24
24
return LLVMGetUndef ( asLLVM ( ) )
25
25
}
26
26
27
27
/// Returns the special LLVM constant `null` pointer value for this type
28
28
/// initialized to `null`.
29
- public func constPointerNull( ) -> IRConstant {
29
+ func constPointerNull( ) -> IRConstant {
30
30
return Constant < Struct > ( llvm: LLVMConstPointerNull ( asLLVM ( ) ) )
31
31
}
32
32
33
33
/// Returns the context associated with this type
34
- public var context : Context {
34
+ var context : Context {
35
35
return Context ( llvm: LLVMGetTypeContext ( asLLVM ( ) ) )
36
36
}
37
37
}
You can’t perform that action at this time.
0 commit comments