AddInteger overloads

Synopses

Declared in <llvm/ADT/FoldingSet.h>

Add a signed integer to the profile bits.

void
AddInteger(int I);

Add a signed long integer to the profile bits.

void
AddInteger(long I);

Add a signed 64‐bit integer to the profile bits.

void
AddInteger(long long I);

Add an unsigned integer to the profile bits.

void
AddInteger(unsigned int I);

Add an unsigned long integer to the profile bits.

void
AddInteger(unsigned long I);

Add an unsigned 64‐bit integer to the profile bits.

void
AddInteger(unsigned long long I);

Parameters

Name

Description

I

Integer value to profile.

Created with MrDocs