diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-05-07 00:16:31 +0000 |
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-05-07 00:16:31 +0000 |
| commit | baf3fee88531c68e001db6e17c9a63475b1367f3 (patch) | |
| tree | ffd2230e8bb1ecd8e7568e5dbd4683fbfe369f78 /llvm/include | |
| parent | f08aa62c80df79cb1cb34e34b6140b9f7dba4204 (diff) | |
| download | bcm5719-llvm-baf3fee88531c68e001db6e17c9a63475b1367f3.tar.gz bcm5719-llvm-baf3fee88531c68e001db6e17c9a63475b1367f3.zip | |
Make DwarfWriter::RecordInlinedFnStart more like the other DwarfWriter's methods:
-Have it return a label ID
-Remove the unused Instruction parameter
No functionality change.
llvm-svn: 71132
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/CodeGen/DwarfWriter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/DwarfWriter.h b/llvm/include/llvm/CodeGen/DwarfWriter.h index 8e680e3e113..facd5f6e6a5 100644 --- a/llvm/include/llvm/CodeGen/DwarfWriter.h +++ b/llvm/include/llvm/CodeGen/DwarfWriter.h @@ -106,11 +106,11 @@ public: bool ShouldEmitDwarfDebug() const; //// RecordInlinedFnStart - Indicate the start of a inlined function. - void RecordInlinedFnStart(Instruction *I, DISubprogram &SP, unsigned LabelID, - DICompileUnit CU, unsigned Line, unsigned Col); + unsigned RecordInlinedFnStart(DISubprogram SP, DICompileUnit CU, + unsigned Line, unsigned Col); /// RecordInlinedFnEnd - Indicate the end of inlined subroutine. - unsigned RecordInlinedFnEnd(DISubprogram &SP); + unsigned RecordInlinedFnEnd(DISubprogram SP); /// RecordVariableScope - Record scope for the variable declared by /// DeclareMI. DeclareMI must describe TargetInstrInfo::DECLARE. |

