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

  /external/llvm/include/llvm/Support/
DebugLoc.h 34 DL.LineCol = 1;
42 DL.LineCol = 2;
46 /// LineCol - This 32-bit value encodes the line and column number for the
49 unsigned LineCol;
55 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
72 return (LineCol << 8) >> 8; // Mask out column.
76 return LineCol >> 24;
97 return LineCol == DL.LineCol && ScopeIdx == DL.ScopeIdx;
  /external/llvm/lib/VMCore/
DebugLoc.cpp 83 Result.LineCol = Line | (Col << 24);
177 ID.AddInteger(Key.LineCol);

Completed in 244 milliseconds