 | ContextGetIntType Method |
[This is preliminary documentation and is subject to change.]
Get's an LLVM integer type of arbitrary bit width
Namespace:
Llvm.NET
Assembly:
Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntaxpublic ITypeRef GetIntType(
uint bitWidth
)
Parameters
- bitWidth
- Type: SystemUInt32
Return Value
Type:
ITypeRef
Remarks
For standard integer bit widths (e.g. 1,8,16,32,64) this will return
the same type as the corresponding specialized property.
(e.g. GetIntType(1) is the same as
BoolType,
GetIntType(16) is the same as
Int16Type, etc... )
See Also