git: 1ed4655d9d5a - stable/13 - Fix clang assertion while building recent www/chromium

Dimitry Andric dim at FreeBSD.org
Fri Jun 25 17:32:27 UTC 2021


The branch stable/13 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=1ed4655d9d5aab333eb5a89fafc2080315a0af79

commit 1ed4655d9d5aab333eb5a89fafc2080315a0af79
Author:     Dimitry Andric <dim at FreeBSD.org>
AuthorDate: 2021-06-21 18:46:34 +0000
Commit:     Dimitry Andric <dim at FreeBSD.org>
CommitDate: 2021-06-25 17:30:41 +0000

    Fix clang assertion while building recent www/chromium
    
    Merge commit c8227f06b335 from llvm git (by Arthur Eubanks):
    
      [clang] Don't assert in EmitAggregateCopy on trivial_abi types
    
      Fixes PR42961.
    
      Reviewed By: rnk
    
      Differential Revision: https://reviews.llvm.org/D97872
    
    PR:             256721, 255570
    Reported by:    jbeich
    
    (cherry picked from commit e7e517981a6591c79fb49cd8810361b0f3ad5983)
---
 contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp b/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
index fb96d70732e8..ee1c71a5452e 100644
--- a/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
+++ b/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
@@ -1939,7 +1939,7 @@ void CodeGenFunction::EmitAggregateCopy(LValue Dest, LValue Src, QualType Ty,
               Record->hasTrivialCopyAssignment() ||
               Record->hasTrivialMoveConstructor() ||
               Record->hasTrivialMoveAssignment() ||
-              Record->isUnion()) &&
+              Record->hasAttr<TrivialABIAttr>() || Record->isUnion()) &&
              "Trying to aggregate-copy a type without a trivial copy/move "
              "constructor or assignment operator");
       // Ignore empty classes in C++.


More information about the dev-commits-src-all mailing list