Use

public struct Use

Use represents an iterator over the uses and users of a particular value in an LLVM program.

  • Retrieves the next use of a value.

    Declaration

    Swift

    public func next() -> Use?
  • Obtain the user value for this Use object.

    Declaration

    Swift

    public func user() -> IRValue?
  • Obtain the value this Use object corresponds to.

    Declaration

    Swift

    public func usedValue() -> IRValue?