This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 6fc62c80e4 Reland: [Remarks] Refactor optimization remarks setup new a209544fdd C++ DR712 and others: handle non-odr-use resulting from an l [...] new 263516059c PR23833, DR2140: an lvalue-to-rvalue conversion on a glvalue [...] new 2ec487f0ba Remove unused SK_LValueToRValue initialization step.
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Sema/Initialization.h | 9 -- lib/AST/Expr.cpp | 5 + lib/CodeGen/CGDecl.cpp | 80 ++++++++----- lib/CodeGen/CGExpr.cpp | 109 ++++++++++++++---- lib/CodeGen/CGExprAgg.cpp | 3 +- lib/CodeGen/CGExprScalar.cpp | 4 +- lib/CodeGen/CodeGenModule.h | 7 ++ lib/Sema/SemaExpr.cpp | 159 +++++++++++++++++++++----- lib/Sema/SemaInit.cpp | 23 ---- lib/StaticAnalyzer/Core/ExprEngineC.cpp | 7 +- test/Analysis/nullptr.cpp | 12 +- test/CXX/basic/basic.def.odr/p2.cpp | 80 +++++++++++++ test/CXX/drs/dr20xx.cpp | 197 +++++++++++++++++++++++++++++++- test/CXX/drs/dr21xx.cpp | 36 ++++++ test/CXX/drs/dr23xx.cpp | 42 ++++++- test/CXX/drs/dr6xx.cpp | 17 +++ test/CXX/drs/dr7xx.cpp | 36 ++++++ test/CodeGenCXX/no-odr-use.cpp | 46 ++++++++ test/CodeGenCXX/nullptr.cpp | 47 ++++++++ www/cxx_dr_status.html | 14 +-- 20 files changed, 793 insertions(+), 140 deletions(-) create mode 100644 test/CXX/basic/basic.def.odr/p2.cpp create mode 100644 test/CodeGenCXX/no-odr-use.cpp