Make a 64‐bit integer from a high / low pair of 32‐bit integers.

Synopsis

Declared in <llvm/Support/MathExtras.h>

constexpr
uint64_t
Make_64(
    uint32_t High,
    uint32_t Low);

Return Value

The 64‐bit value formed from High and Low.

Parameters

Name

Description

High

Upper 32 bits of the result.

Low

Lower 32 bits of the result.

Created with MrDocs