diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-04-11 01:13:04 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-04-11 01:13:04 +0000 |
commit | 22e66b434ad793c1ed0c80d228d94e6a522ab49e (patch) | |
tree | 1eb235b9e067f5aa0924c032f65865e39799b129 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 83e78f5c3c3dbf8a29d615ceb84a70163a38f42e (diff) | |
download | bcm5719-llvm-22e66b434ad793c1ed0c80d228d94e6a522ab49e.tar.gz bcm5719-llvm-22e66b434ad793c1ed0c80d228d94e6a522ab49e.zip |
Cleanup: Add default arguments to CodeGenFunction::StartFunction.
Thanks dblaikie for the suggestion!
llvm-svn: 206012
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 56ad76ae926..7d5a59e99ed 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1148,8 +1148,8 @@ public: llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, - SourceLocation Loc, - SourceLocation StartLoc); + SourceLocation Loc = SourceLocation(), + SourceLocation StartLoc = SourceLocation()); void EmitConstructorBody(FunctionArgList &Args); void EmitDestructorBody(FunctionArgList &Args); |