Table of Contents

Enum Visibility

Namespace
Ubiquity.NET.Llvm.Values
Assembly
Ubiquity.NET.Llvm.dll

Enumeration for the visibility of a global value

public enum Visibility

Fields

Default = 0

Default visibility for a GlobalValue

Hidden = 1

Two declarations of an object with hidden visibility refer to the same object if they are in the same shared object

Protected = 2

Symbol cannot be overridden by another module

Remarks

A symbol with Internal or Private must have Default visibility.

See Also