add comments, don't require inlined-at to be specified.

llvm-svn: 100092
This commit is contained in:
Chris Lattner 2010-04-01 06:29:56 +00:00
parent 43cd9e3845
commit a22de1fa9f
1 changed files with 3 additions and 1 deletions

View File

@ -37,8 +37,10 @@ namespace llvm {
public:
NewDebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
/// get - Get a new DebugLoc that corresponds to the specified line/col
/// scope/inline location.
static NewDebugLoc get(unsigned Line, unsigned Col,
MDNode *Scope, MDNode *InlinedAt);
MDNode *Scope, MDNode *InlinedAt = 0);
/// getFromDILocation - Translate the DILocation quad into a NewDebugLoc.
static NewDebugLoc getFromDILocation(MDNode *N);