struct Pattern::NumericVariableMatch

Declaration

struct Pattern::NumericVariableMatch { /* full declaration omitted */ };

Description

Structure representing the definition of a numeric variable in a pattern. It holds the pointer to the class representing the numeric variable whose value is being defined and the number of the parenthesis group in RegExStr to capture that value.

Declared at: llvm/lib/Support/FileCheckImpl.h:394

Member Variables

public llvm::NumericVariable* DefinedNumericVariable
Pointer to class representing the numeric variable whose value is being defined.
public unsigned int CaptureParenGroup
Number of the parenthesis group in RegExStr that captures the value of this numeric variable definition.