HomeSort by relevance Sort by last modified time
    Searched defs:FileNum (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/MC/
MCDwarf.h 57 // FileNum - the file number.
58 unsigned FileNum;
81 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
83 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
90 /// getFileNum - Get the FileNum of this MCDwarfLoc.
91 unsigned getFileNum() const { return FileNum; }
108 /// setFileNum - Set the FileNum of this MCDwarfLoc.
109 void setFileNum(unsigned fileNum) { FileNum = fileNum;
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 120 unsigned FileNum = 1;
133 if (FileNum != it->getFileNum()) {
134 FileNum = it->getFileNum();
136 MCOS->EmitULEB128IntValue(FileNum);
    [all...]

Completed in 195 milliseconds