We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d41cc23 commit 177deb4Copy full SHA for 177deb4
Sources/LLVM/FunctionType.swift
@@ -21,7 +21,7 @@ public struct FunctionType: IRType {
21
/// - parameter isVarArg: Indicates whether this function type is variadic.
22
/// Defaults to `false`.
23
/// - note: The context of this type is taken from it's `returnType`
24
- @available(*, deprecated, message: "Use the more concise initializer instead")
+ @available(*, deprecated, message: "Use the more concise initializer instead", renamed: "FunctionType.init(_:_:variadic:)")
25
public init(argTypes: [IRType], returnType: IRType, isVarArg: Bool = false) {
26
self.parameterTypes = argTypes
27
self.returnType = returnType
0 commit comments