diff options
| author | Devang Patel <dpatel@apple.com> | 2010-07-20 22:20:10 +0000 | 
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2010-07-20 22:20:10 +0000 | 
| commit | 11a42a465511f65030474b789442f214df7c2d95 (patch) | |
| tree | 6d5e996d7dafb26f895f34be1da9602317473535 /clang/lib/CodeGen/CodeGenFunction.cpp | |
| parent | 5ca516b87c95cd70d403180ed28e41f039edb4c9 (diff) | |
| download | llvm-11a42a465511f65030474b789442f214df7c2d95.zip llvm-11a42a465511f65030474b789442f214df7c2d95.tar.gz llvm-11a42a465511f65030474b789442f214df7c2d95.tar.bz2  | |
Remove unused argument.
llvm-svn: 108946
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index eb6c436..baa8c6d 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -139,7 +139,7 @@ void CodeGenFunction::FinishFunction(SourceLocation EndLoc) {    // Emit debug descriptor for function end.    if (CGDebugInfo *DI = getDebugInfo()) {      DI->setLocation(EndLoc); -    DI->EmitRegionEnd(CurFn, Builder); +    DI->EmitRegionEnd(Builder);    }    EmitFunctionEpilog(*CurFnInfo);  | 
