diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-12-09 22:04:13 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-12-09 22:04:13 +0000 |
commit | 7f138811cd27f5835e7781d3f1cf0797b26af9b9 (patch) | |
tree | 174bb1aa2f2ecae1b4aa7ad765bc41f345ea8662 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | bd8f3c1f61b4fb880322466bcfa7ba300cee38ab (diff) | |
download | llvm-7f138811cd27f5835e7781d3f1cf0797b26af9b9.zip llvm-7f138811cd27f5835e7781d3f1cf0797b26af9b9.tar.gz llvm-7f138811cd27f5835e7781d3f1cf0797b26af9b9.tar.bz2 |
DebugInfo: Correct the location of initializations of auto.
llvm-svn: 223839
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index a80a199..bfef0c9 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1545,8 +1545,7 @@ public: /// EmitExprAsInit - Emits the code necessary to initialize a /// location in memory with the given initializer. void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue, - bool capturedByInit, - SourceLocation DbgLoc = SourceLocation()); + bool capturedByInit, SourceLocation DbgLoc); /// hasVolatileMember - returns true if aggregate type has a volatile /// member. |