reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/MC/MCParser/MCAsmParser.h
   80     Var.Decl = decl;
   81     Var.IsGlobalLV = isGlobalLV;
   82     Var.Size = size;
   83     Var.Type = type;
   84     Var.Length = size / type;
lib/Target/X86/AsmParser/X86AsmParser.cpp
 1389     FrontendSize = Info.Var.Type * 8;
 1390     Decl = Info.Var.Decl;
 1391     IsGlobalLV = Info.Var.IsGlobalLV;
 1762     Decl = Info.Var.Decl;
 1814   case IOK_LENGTH: CVal = Info.Var.Length; break;
 1815   case IOK_SIZE: CVal = Info.Var.Size; break;
 1816   case IOK_TYPE: CVal = Info.Var.Type; break;