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 76 // FileNum - the file number.
77 unsigned FileNum;
100 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
102 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
109 /// getFileNum - Get the FileNum of this MCDwarfLoc.
110 unsigned getFileNum() const { return FileNum; }
127 /// setFileNum - Set the FileNum of this MCDwarfLoc.
128 void setFileNum(unsigned fileNum) { FileNum = fileNum;
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 134 unsigned FileNum = 1;
146 if (FileNum != it->getFileNum()) {
147 FileNum = it->getFileNum();
149 MCOS->EmitULEB128IntValue(FileNum);
    [all...]

Completed in 31 milliseconds