diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-06-12 23:38:09 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-06-12 23:38:09 +0000 |
| commit | a1c9d4d9325de9c6e12aea4c02f4c15aa0615bf2 (patch) | |
| tree | a9757beb8bbd90ed01eafee161a6c6b5c25af6d7 /clang/lib/CodeGen/CGCall.cpp | |
| parent | 0603bbb53c53c2670695a68c1d3b7b9970de1795 (diff) | |
| download | bcm5719-llvm-a1c9d4d9325de9c6e12aea4c02f4c15aa0615bf2.tar.gz bcm5719-llvm-a1c9d4d9325de9c6e12aea4c02f4c15aa0615bf2.zip | |
Simplify: we don't need any special-case lifetime extension when initializing
declarations of reference type; they're handled by the general case handling of
MaterializeTemporaryExpr.
llvm-svn: 183875
Diffstat (limited to 'clang/lib/CodeGen/CGCall.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 77a43a2fc4a..80446393d5b 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -2013,8 +2013,7 @@ void CodeGenFunction::EmitCallArg(CallArgList &args, const Expr *E, if (E->isGLValue()) { assert(E->getObjectKind() == OK_Ordinary); - return args.add(EmitReferenceBindingToExpr(E, /*InitializedDecl=*/0), - type); + return args.add(EmitReferenceBindingToExpr(E), type); } if (hasAggregateEvaluationKind(type) && |

