[llvm-bugs] [Bug 28121] New: clang crashes on (invalid) C++ code with volatile argument to copy constructor

via llvm-bugs llvm-bugs at lists.llvm.org
Mon Jun 13 23:29:47 PDT 2016


https://llvm.org/bugs/show_bug.cgi?id=28121

            Bug ID: 28121
           Summary: clang crashes on (invalid) C++ code with volatile
                    argument to copy constructor
           Product: clang
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
          Assignee: unassignedclangbugs at nondot.org
          Reporter: su at cs.ucdavis.edu
                CC: dgregor at apple.com, llvm-bugs at lists.llvm.org
    Classification: Unclassified

The current clang trunk crashes when compiling the following C++ test case on
x86_64-linux-gnu in both 32-bit and 64-bit modes. 

It seems to affect all clang versions since as early as 3.0. 


$ clang++ -v  
clang version 3.9.0 (trunk 272539)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/local/clang-trunk/bin
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9.3
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/5.3.0
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.4
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.4.7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.6
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.6.4
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7.3
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.8
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.8.5
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.9
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.9.3
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/5.3.0
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.9
Candidate multilib: .;@m64
Candidate multilib: 32;@m32
Candidate multilib: x32;@mx32
Selected multilib: .;@m64
$ 
$ clang++ -c -std=c++11 small.cpp
#0 0x0000000001d1df05 llvm::sys::PrintStackTrace(llvm::raw_ostream&)
(/usr/local/clang-trunk/bin/clang-3.9+0x1d1df05)
#1 0x0000000001d1bd96 llvm::sys::RunSignalHandlers()
(/usr/local/clang-trunk/bin/clang-3.9+0x1d1bd96)
#2 0x0000000001d1bfb4 SignalHandler(int)
(/usr/local/clang-trunk/bin/clang-3.9+0x1d1bfb4)
#3 0x00007f5b42378340 __restore_rt
(/lib/x86_64-linux-gnu/libpthread.so.0+0x10340)
#4 0x00000000031d8419
clang::ASTContext::getUnqualifiedArrayType(clang::QualType, clang::Qualifiers&)
(/usr/local/clang-trunk/bin/clang-3.9+0x31d8419)
#5 0x0000000002cffa71
clang::Sema::CompareReferenceRelationship(clang::SourceLocation,
clang::QualType, clang::QualType, bool&, bool&, bool&)
(/usr/local/clang-trunk/bin/clang-3.9+0x2cffa71)
#6 0x0000000002d1b9d0 TryReferenceInit(clang::Sema&, clang::Expr*,
clang::QualType, clang::SourceLocation, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2d1b9d0)
#7 0x0000000002d141f7 TryCopyInitialization(clang::Sema&, clang::Expr*,
clang::QualType, bool, bool, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2d141f7)
#8 0x0000000002d15924 clang::Sema::AddOverloadCandidate(clang::FunctionDecl*,
clang::DeclAccessPair, llvm::ArrayRef<clang::Expr*>,
clang::OverloadCandidateSet&, bool, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2d15924)
#9 0x0000000002c5444b ResolveConstructorOverload(clang::Sema&,
clang::SourceLocation, llvm::MutableArrayRef<clang::Expr*>,
clang::OverloadCandidateSet&, clang::DeclContextLookupResult,
clang::OverloadCandidate*&, bool, bool, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c5444b)
#10 0x0000000002c5d638 TryConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType,
clang::InitializationSequence&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c5d638)
#11 0x0000000002c5eea2
clang::InitializationSequence::InitializeFrom(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c5eea2)
#12 0x0000000002c674a0
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674a0)
#13 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#14 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#15 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#16 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#17 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#18 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#19 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#20 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#21 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#22 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#23 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#24 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#25 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#26 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#27 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#28 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#29 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#30 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#31 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#32 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#33 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#34 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#35 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#36 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#37 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#38 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#39 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#40 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#41 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#42 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#43 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#44 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#45 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#46 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#47 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#48 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#49 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#50 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#51 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#52 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#53 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#54 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#55 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#56 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#57 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#58 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#59 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#60 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#61 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#62 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#63 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#64 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#65 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#66 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#67 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#68 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#69 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#70 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#71 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#72 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#73 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#74 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#75 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#76 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#77 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#78 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#79 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#80 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#81 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#82 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#83 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#84 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#85 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#86 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#87 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#88 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#89 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#90 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#91 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#92 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#93 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#94 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#95 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#96 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#97 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#98 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#99 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#100 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#101 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#102 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#103 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#104 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#105 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#106 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#107 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#108 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#109 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#110 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#111 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#112 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#113 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#114 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#115 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#116 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#117 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#118 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#119 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#120 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#121 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#122 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#123 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#124 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#125 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#126 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#127 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#128 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#129 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#130 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#131 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#132 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#133 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#134 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#135 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#136 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#137 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#138 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#139 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#140 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#141 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#142 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#143 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#144 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#145 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#146 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#147 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#148 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#149 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#150 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#151 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#152 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#153 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#154 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#155 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#156 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#157 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#158 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#159 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#160 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#161 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#162 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#163 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#164 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#165 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#166 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#167 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#168 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#169 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#170 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#171 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#172 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#173 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#174 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#175 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#176 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#177 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#178 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#179 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#180 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#181 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#182 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#183 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#184 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#185 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#186 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#187 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#188 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#189 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#190 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#191 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#192 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#193 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#194 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#195 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#196 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#197 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#198 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#199 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#200 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#201 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#202 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#203 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#204 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#205 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#206 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#207 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#208 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#209 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#210 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#211 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#212 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#213 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#214 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#215 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#216 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#217 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#218 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#219 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#220 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#221 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#222 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#223 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#224 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#225 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#226 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#227 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#228 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#229 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#230 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#231 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#232 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#233 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#234 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#235 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#236 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#237 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#238 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#239 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#240 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#241 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#242 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#243 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#244 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#245 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#246 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#247 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#248 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
#249 0x0000000002c64e44 clang::InitializationSequence::Perform(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::QualType*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c64e44)
#250 0x0000000002c674c2
clang::Sema::PerformCopyInitialization(clang::InitializedEntity const&,
clang::SourceLocation, clang::ActionResult<clang::Expr*, true>, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c674c2)
#251 0x0000000002b97dc9 clang::Sema::DefaultArgumentPromotion(clang::Expr*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b97dc9)
#252 0x0000000002bbc539
clang::Sema::DefaultVariadicArgumentPromotion(clang::Expr*,
clang::Sema::VariadicCallType, clang::FunctionDecl*)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbc539)
#253 0x0000000002bbd317
clang::Sema::GatherArgumentsForCall(clang::SourceLocation,
clang::FunctionDecl*, clang::FunctionProtoType const*, unsigned int,
llvm::ArrayRef<clang::Expr*>, llvm::SmallVectorImpl<clang::Expr*>&,
clang::Sema::VariadicCallType, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2bbd317)
#254 0x0000000002b0093f
clang::Sema::CompleteConstructorCall(clang::CXXConstructorDecl*,
llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation,
llvm::SmallVectorImpl<clang::Expr*>&, bool, bool)
(/usr/local/clang-trunk/bin/clang-3.9+0x2b0093f)
#255 0x0000000002c55908 PerformConstructorInitialization(clang::Sema&,
clang::InitializedEntity const&, clang::InitializationKind const&,
llvm::MutableArrayRef<clang::Expr*>, clang::InitializationSequence::Step
const&, bool&, bool, bool, clang::SourceLocation, clang::SourceLocation)
(/usr/local/clang-trunk/bin/clang-3.9+0x2c55908)
Stack dump:
0.      Program arguments: /usr/local/clang-trunk/bin/clang-3.9 -cc1 -triple
x86_64-unknown-linux-gnu -emit-obj -mrelax-all -disable-free -main-file-name
small.cpp -mrelocation-model static -mthread-model posix -mdisable-fp-elim
-fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables
-fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb
-coverage-file /data2/small.cpp -resource-dir
/usr/local/clang-trunk/bin/../lib/clang/3.9.0 -internal-isystem
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9 -internal-isystem
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../include/x86_64-linux-gnu/c++/4.9
-internal-isystem
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../include/x86_64-linux-gnu/c++/4.9
-internal-isystem
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/backward
-internal-isystem /usr/local/include -internal-isystem
/usr/local/clang-trunk/bin/../lib/clang/3.9.0/include -internal-externc-isystem
/usr/include/x86_64-linux-gnu -internal-externc-isystem /include
-internal-externc-isystem /usr/include -std=c++11 -fdeprecated-macro
-fdebug-compilation-dir /data2 -ferror-limit 19 -fmessage-length 364
-fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option
-fcolor-diagnostics -o small.o -x c++ small.cpp
1.      small.cpp:7:18: current parser token ';'
clang-3.9: error: unable to execute command: Segmentation fault (core dumped)
clang-3.9: error: clang frontend command failed due to signal (use -v to see
invocation)
clang version 3.9.0 (trunk 272539)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/local/clang-trunk/bin
clang-3.9: note: diagnostic msg: PLEASE submit a bug report to
http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and
associated run script.
clang-3.9: note: diagnostic msg:
********************

PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-3.9: note: diagnostic msg: /tmp/small-f3a885.cpp
clang-3.9: note: diagnostic msg: /tmp/small-f3a885.sh
clang-3.9: note: diagnostic msg:

********************
$ 


----------------------------


struct A
{
  A (...);
};

volatile A a;
volatile A a2 (a);

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160614/3a2df157/attachment-0001.html>


More information about the llvm-bugs mailing list