Add getter for the index.

llvm-svn: 63675
This commit is contained in:
Bill Wendling 2009-02-03 22:49:14 +00:00
parent 0404dc11af
commit 7798193993
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,8 @@ namespace llvm {
static DebugLoc getUnknownLoc() { DebugLoc L; L.Idx = 0; return L; }
static DebugLoc get(unsigned idx) { DebugLoc L; L.Idx = idx; return L; }
unsigned getIndex() const { return Idx; }
/// isInvalid - Return true if the DebugLoc is invalid.
bool isInvalid() const { return Idx == ~0U; }