re PR c++/45329 (When printing a list of candidate functions, explain why each function failed to match.) gcc/cp/ PR c++/45329 * call.c (struct conversion): Document bad_p field. (enum rejection_reason_code): Define. (struct conversion_info): Define. (struct rejection_reason): Define. (struct z_candidate): Add `reason' field. (add_candidate): Add `reason' parameter. Store it in CAND. (alloc_rejection, arity_rejection, arg_conversion_rejection): New functions. (bad_arg_conversion_rejection): New function. (convert_class_to_reference): Add comment. (remaining_arguments): New function. (add_function_candidate): Record rejection reason and pass it to add_candidate. (add_conv_candidate, build_builtin_candidate): Likewise. (add_template_candidate_real): Likewise. (print_conversion_rejection): New function. (print_z_candidate): Print CAND->REASON if it exists. Adjust diagnostic strings. (print_z_candidates): Add location_t argument. Adjust calling sequence for print_z_candidate. Print header line directly. (build_user_type_conversion_1): Add reason for rejection to CAND. Adjust call to print_z_candidates. (print_error_for_call_failure): New function. (build_new_function_call): Call it. Adjust call to print_z_candidates. (build_operator_new_call): Likewise. (build_op_call): Likewise. (build_conditional_expr): Likewise. (build_new_op): Likewise. (build_new_method_call): Likewise. gcc/testsuite/ PR c++/45329 * testsuite/g++.dg/conversion/ambig1.C: Adjust. * testsuite/g++.dg/conversion/op1.C: Adjust. * testsuite/g++.dg/conversion/simd1.C: Adjust. * testsuite/g++.dg/cpp0x/defaulted14.C: Adjust. * testsuite/g++.dg/cpp0x/defaulted18.C: Adjust. * testsuite/g++.dg/cpp0x/defaulted20.C: Adjust. * testsuite/g++.dg/cpp0x/explicit3.C: Adjust. * testsuite/g++.dg/cpp0x/explicit4.C: Adjust. * testsuite/g++.dg/cpp0x/implicit4.C: Adjust. * testsuite/g++.dg/cpp0x/nullptr15.C: Adjust. * testsuite/g++.dg/cpp0x/nullptr19.C: Adjust. * testsuite/g++.dg/cpp0x/pr31431-2.C: Adjust. * testsuite/g++.dg/cpp0x/pr31431.C: Adjust. * testsuite/g++.dg/cpp0x/pr31434.C: Adjust. * testsuite/g++.dg/cpp0x/pr31437.C: Adjust. * testsuite/g++.dg/cpp0x/rv2n.C: Adjust. * testsuite/g++.dg/cpp0x/rv3n.C: Adjust. * testsuite/g++.dg/cpp0x/rv4n.C: Adjust. * testsuite/g++.dg/cpp0x/rv5n.C: Adjust. * testsuite/g++.dg/cpp0x/rv6n.C: Adjust. * testsuite/g++.dg/cpp0x/rv7n.C: Adjust. * testsuite/g++.dg/cpp0x/temp_default2.C: Adjust. * testsuite/g++.dg/cpp0x/trailing4.C: Adjust. * testsuite/g++.dg/cpp0x/variadic-ex3.C: Adjust. * testsuite/g++.dg/cpp0x/variadic-ex4.C: Adjust. * testsuite/g++.dg/cpp0x/variadic35.C: Adjust. * testsuite/g++.dg/cpp0x/vt-35147.C: Adjust. * testsuite/g++.dg/cpp0x/vt-37737-2.C: Adjust. * testsuite/g++.dg/expr/cond9.C: Adjust. * testsuite/g++.dg/expr/pmf-1.C: Adjust. * testsuite/g++.dg/ext/label5.C: Adjust. * testsuite/g++.dg/ext/visibility/anon8.C: Adjust. * testsuite/g++.dg/ext/vla2.C: Adjust. * testsuite/g++.dg/gomp/pr26690-1.C: Adjust. * testsuite/g++.dg/gomp/pr26690-2.C: Adjust. * testsuite/g++.dg/init/synth2.C: Adjust. * testsuite/g++.dg/lookup/conv-1.C: Adjust. * testsuite/g++.dg/lookup/new1.C: Adjust. * testsuite/g++.dg/lookup/using9.C: Adjust. * testsuite/g++.dg/other/error13.C: Adjust. * testsuite/g++.dg/other/error20.C: Adjust. * testsuite/g++.dg/other/error31.C: Adjust. * testsuite/g++.dg/other/pr28114.C: Adjust. * testsuite/g++.dg/other/ptrmem10.C: Adjust. * testsuite/g++.dg/other/ptrmem11.C: Adjust. * testsuite/g++.dg/overload/ambig1.C: Adjust. * testsuite/g++.dg/overload/arg3.C: Adjust. * testsuite/g++.dg/overload/builtin1.C: Adjust. * testsuite/g++.dg/overload/copy1.C: Adjust. * testsuite/g++.dg/overload/new1.C: Adjust. * testsuite/g++.dg/overload/template4.C: Adjust. * testsuite/g++.dg/overload/unknown1.C: Adjust. * testsuite/g++.dg/overload/using2.C: Adjust. * testsuite/g++.dg/parse/crash5.C: Adjust. * testsuite/g++.dg/parse/error19.C: Adjust. * testsuite/g++.dg/parse/error28.C: Adjust. * testsuite/g++.dg/parse/template7.C: Adjust. * testsuite/g++.dg/parse/typename7.C: Adjust. * testsuite/g++.dg/rtti/typeid6.C: Adjust. * testsuite/g++.dg/tc1/dr152.C: Adjust. * testsuite/g++.dg/template/conv11.C: Adjust. * testsuite/g++.dg/template/copy1.C: Adjust. * testsuite/g++.dg/template/crash37.C: Adjust. * testsuite/g++.dg/template/deduce3.C: Adjust. * testsuite/g++.dg/template/dependent-expr5.C: Adjust. * testsuite/g++.dg/template/error38.C: Adjust. * testsuite/g++.dg/template/error40.C: Adjust. * testsuite/g++.dg/template/friend.C: Adjust. * testsuite/g++.dg/template/incomplete2.C: Adjust. * testsuite/g++.dg/template/instantiate5.C: Adjust. * testsuite/g++.dg/template/local4.C: Adjust. * testsuite/g++.dg/template/local6.C: Adjust. * testsuite/g++.dg/template/new3.C: Adjust. * testsuite/g++.dg/template/operator9.C: Adjust. * testsuite/g++.dg/template/overload6.C: Adjust. * testsuite/g++.dg/template/ptrmem2.C: Adjust. * testsuite/g++.dg/template/ptrmem20.C: Adjust. * testsuite/g++.dg/template/ptrmem4.C: Adjust. * testsuite/g++.dg/template/ptrmem8.C: Adjust. * testsuite/g++.dg/template/qualttp5.C: Adjust. * testsuite/g++.dg/template/sfinae2.C: Adjust. * testsuite/g++.dg/template/spec22.C: Adjust. * testsuite/g++.dg/template/spec23.C: Adjust. * testsuite/g++.dg/template/ttp25.C: Adjust. * testsuite/g++.dg/template/typedef4.C: Adjust. * testsuite/g++.dg/template/unify10.C: Adjust. * testsuite/g++.dg/template/unify11.C: Adjust. * testsuite/g++.dg/template/unify6.C: Adjust. * testsuite/g++.dg/template/unify7.C: Adjust. * testsuite/g++.dg/template/unify9.C: Adjust. * testsuite/g++.dg/template/varmod1.C: Adjust. * testsuite/g++.old-deja/g++.benjamin/15799.C: Adjust. * testsuite/g++.old-deja/g++.benjamin/15800-1.C: Adjust. * testsuite/g++.old-deja/g++.brendan/ambiguity1.C: Adjust. * testsuite/g++.old-deja/g++.brendan/crash29.C: Adjust. * testsuite/g++.old-deja/g++.brendan/crash48.C: Adjust. * testsuite/g++.old-deja/g++.brendan/crash56.C: Adjust. * testsuite/g++.old-deja/g++.brendan/cvt3.C: Adjust. * testsuite/g++.old-deja/g++.brendan/overload1.C: Adjust. * testsuite/g++.old-deja/g++.brendan/overload4.C: Adjust. * testsuite/g++.old-deja/g++.brendan/overload9.C: Adjust. * testsuite/g++.old-deja/g++.bugs/900127_01.C: Adjust. * testsuite/g++.old-deja/g++.bugs/900205_04.C: Adjust. * testsuite/g++.old-deja/g++.bugs/900330_02.C: Adjust. * testsuite/g++.old-deja/g++.bugs/900404_03.C: Adjust. * testsuite/g++.old-deja/g++.bugs/900514_03.C: Adjust. * testsuite/g++.old-deja/g++.eh/ctor1.C: Adjust. * testsuite/g++.old-deja/g++.jason/conversion11.C: Adjust. * testsuite/g++.old-deja/g++.jason/crash3.C: Adjust. * testsuite/g++.old-deja/g++.jason/overload16.C: Adjust. * testsuite/g++.old-deja/g++.jason/overload28.C: Adjust. * testsuite/g++.old-deja/g++.jason/scoping10.C: Adjust. * testsuite/g++.old-deja/g++.jason/template30.C: Adjust. * testsuite/g++.old-deja/g++.jason/temporary2.C: Adjust. * testsuite/g++.old-deja/g++.law/arg1.C: Adjust. * testsuite/g++.old-deja/g++.law/arg11.C: Adjust. * testsuite/g++.old-deja/g++.law/arm9.C: Adjust. * testsuite/g++.old-deja/g++.law/ctors11.C: Adjust. * testsuite/g++.old-deja/g++.law/ctors17.C: Adjust. * testsuite/g++.old-deja/g++.law/ctors5.C: Adjust. * testsuite/g++.old-deja/g++.law/ctors9.C: Adjust. * testsuite/g++.old-deja/g++.law/enum4.C: Adjust. * testsuite/g++.old-deja/g++.law/missed-error2.C: Adjust. * testsuite/g++.old-deja/g++.law/operators32.C: Adjust. * testsuite/g++.old-deja/g++.law/operators9.C: Adjust. * testsuite/g++.old-deja/g++.mike/net2.C: Adjust. * testsuite/g++.old-deja/g++.mike/net22.C: Adjust. * testsuite/g++.old-deja/g++.mike/p11110.C: Adjust. * testsuite/g++.old-deja/g++.mike/p1989.C: Adjust. * testsuite/g++.old-deja/g++.mike/p2431.C: Adjust. * testsuite/g++.old-deja/g++.mike/p438.C: Adjust. * testsuite/g++.old-deja/g++.mike/p807a.C: Adjust. * testsuite/g++.old-deja/g++.mike/p9068.C: Adjust. * testsuite/g++.old-deja/g++.niklas/t120.C: Adjust. * testsuite/g++.old-deja/g++.niklas/t121.C: Adjust. * testsuite/g++.old-deja/g++.niklas/t128.C: Adjust. * testsuite/g++.old-deja/g++.ns/overload2.C: Adjust. * testsuite/g++.old-deja/g++.ns/using12.C: Adjust. * testsuite/g++.old-deja/g++.other/crash24.C: Adjust. * testsuite/g++.old-deja/g++.other/expr1.C: Adjust. * testsuite/g++.old-deja/g++.other/overload11.C: Adjust. * testsuite/g++.old-deja/g++.other/pmf3.C: Adjust. * testsuite/g++.old-deja/g++.other/volatile1.C: Adjust. * testsuite/g++.old-deja/g++.pt/auto_ptr.C: Adjust. * testsuite/g++.old-deja/g++.pt/crash28.C: Adjust. * testsuite/g++.old-deja/g++.pt/crash60.C: Adjust. * testsuite/g++.old-deja/g++.pt/explicit38.C: Adjust. * testsuite/g++.old-deja/g++.pt/explicit39.C: Adjust. * testsuite/g++.old-deja/g++.pt/explicit41.C: Adjust. * testsuite/g++.old-deja/g++.pt/explicit67.C: Adjust. * testsuite/g++.old-deja/g++.pt/explicit77.C: Adjust. * testsuite/g++.old-deja/g++.pt/expr2.C: Adjust. * testsuite/g++.old-deja/g++.pt/ptrmem10.C: Adjust. * testsuite/g++.old-deja/g++.pt/ptrmem6.C: Adjust. * testsuite/g++.old-deja/g++.pt/spec35.C: Adjust. * testsuite/g++.old-deja/g++.pt/spec5.C: Adjust. * testsuite/g++.old-deja/g++.pt/spec6.C: Adjust. * testsuite/g++.old-deja/g++.pt/t05.C: Adjust. * testsuite/g++.old-deja/g++.pt/t24.C: Adjust. * testsuite/g++.old-deja/g++.pt/unify4.C: Adjust. * testsuite/g++.old-deja/g++.pt/unify6.C: Adjust. * testsuite/g++.old-deja/g++.pt/unify8.C: Adjust. * testsuite/g++.old-deja/g++.robertl/eb109.C: Adjust. * testsuite/g++.old-deja/g++.robertl/eb119.C: Adjust. * testsuite/g++.old-deja/g++.robertl/eb131.C: Adjust. * testsuite/g++.old-deja/g++.robertl/eb22.C: Adjust. * testsuite/g++.old-deja/g++.robertl/eb69.C: Adjust. * testsuite/g++.old-deja/g++.robertl/eb98.C: Adjust. From-SVN: r167607
| Name |
Last commit
|
Last update |
|---|---|---|
| .. | ||
| lambda | Loading commit data... | |
| __func__.C | Loading commit data... | |
| alignof.C | Loading commit data... | |
| auto1.C | Loading commit data... | |
| auto10.C | Loading commit data... | |
| auto11.C | Loading commit data... | |
| auto14.C | Loading commit data... | |
| auto15.C | Loading commit data... | |
| auto16.C | Loading commit data... | |
| auto17.C | Loading commit data... | |
| auto18.C | Loading commit data... | |
| auto19.C | Loading commit data... | |
| auto2.C | Loading commit data... | |
| auto20.C | Loading commit data... | |
| auto3.C | Loading commit data... | |
| auto4.C | Loading commit data... | |
| auto5.C | Loading commit data... | |
| auto7.C | Loading commit data... | |
| auto9.C | Loading commit data... | |
| bind.C | Loading commit data... | |
| bracket1.C | Loading commit data... | |
| bracket2.C | Loading commit data... | |
| bracket3.C | Loading commit data... | |
| bracket4.C | Loading commit data... | |
| cast-bug.C | Loading commit data... | |
| cast.C | Loading commit data... | |
| collapse-bug.C | Loading commit data... | |
| collapse.C | Loading commit data... | |
| constexpr-46420.C | Loading commit data... | |
| constexpr-98.C | Loading commit data... | |
| constexpr-access.C | Loading commit data... | |
| constexpr-array-ptr.C | Loading commit data... | |
| constexpr-array-ptr2.C | Loading commit data... | |
| constexpr-array-ptr3.C | Loading commit data... | |
| constexpr-array-ptr4.C | Loading commit data... | |
| constexpr-array-ptr5.C | Loading commit data... | |
| constexpr-array-ptr6.C | Loading commit data... | |
| constexpr-array.C | Loading commit data... | |
| constexpr-auto.C | Loading commit data... | |
| constexpr-base.C | Loading commit data... | |
| constexpr-base2.C | Loading commit data... | |
| constexpr-base3.C | Loading commit data... | |
| constexpr-bitfield.C | Loading commit data... | |
| constexpr-complex.C | Loading commit data... | |
| constexpr-condition.C | Loading commit data... | |
| constexpr-ctor.C | Loading commit data... | |
| constexpr-ctor2.C | Loading commit data... | |
| constexpr-ctor3.C | Loading commit data... | |
| constexpr-data1.C | Loading commit data... | |
| constexpr-data2.C | Loading commit data... | |
| constexpr-defarg.C | Loading commit data... | |
| constexpr-defarg2.C | Loading commit data... | |
| constexpr-delete.C | Loading commit data... | |
| constexpr-deref.C | Loading commit data... | |
| constexpr-diag1.C | Loading commit data... | |
| constexpr-eh-spec.C | Loading commit data... | |
| constexpr-ellipsis.C | Loading commit data... | |
| constexpr-ellipsis2.C | Loading commit data... | |
| constexpr-empty.C | Loading commit data... | |
| constexpr-empty2.C | Loading commit data... | |
| constexpr-empty3.C | Loading commit data... | |
| constexpr-empty4.C | Loading commit data... | |
| constexpr-empty5.C | Loading commit data... | |
| constexpr-ex1.C | Loading commit data... | |
| constexpr-ex2.C | Loading commit data... | |
| constexpr-ex3.C | Loading commit data... | |
| constexpr-ex4.C | Loading commit data... | |
| constexpr-expinst.C | Loading commit data... | |
| constexpr-explicit-inst.C | Loading commit data... | |
| constexpr-fnptr.C | Loading commit data... | |
| constexpr-function1.C | Loading commit data... | |
| constexpr-function2.C | Loading commit data... | |
| constexpr-function3.C | Loading commit data... | |
| constexpr-ice.C | Loading commit data... | |
| constexpr-ice2.C | Loading commit data... | |
| constexpr-ice3.C | Loading commit data... | |
| constexpr-initlist.C | Loading commit data... | |
| constexpr-initlist2.C | Loading commit data... | |
| constexpr-initlist3.C | Loading commit data... | |
| constexpr-is_literal.C | Loading commit data... | |
| constexpr-neg1.C | Loading commit data... | |
| constexpr-noexcept.C | Loading commit data... | |
| constexpr-noexcept2.C | Loading commit data... | |
| constexpr-noexcept3.C | Loading commit data... | |
| constexpr-noexcept4.C | Loading commit data... | |
| constexpr-non-const-arg.C | Loading commit data... | |
| constexpr-nonlit.C | Loading commit data... | |
| constexpr-nonlit2.C | Loading commit data... | |
| constexpr-nonstatic.C | Loading commit data... | |
| constexpr-nullptr.C | Loading commit data... | |
| constexpr-object1.C | Loading commit data... | |
| constexpr-object2.C | Loading commit data... | |
| constexpr-overflow.C | Loading commit data... | |
| constexpr-pedantic.C | Loading commit data... | |
| constexpr-pos1.C | Loading commit data... | |
| constexpr-potential1.C | Loading commit data... | |
| constexpr-ptrmem.C | Loading commit data... | |
| constexpr-pure.C | Loading commit data... | |
| constexpr-sassert.C | Loading commit data... | |
| constexpr-static.C | Loading commit data... | |
| constexpr-static2.C | Loading commit data... | |
| constexpr-static3.C | Loading commit data... | |
| constexpr-static4.C | Loading commit data... | |
| constexpr-static5.C | Loading commit data... | |
| constexpr-static6.C | Loading commit data... | |
| constexpr-string.C | Loading commit data... | |
| constexpr-switch.C | Loading commit data... | |
| constexpr-targ.C | Loading commit data... | |
| constexpr-throw.C | Loading commit data... | |
| constexpr-typeid.C | Loading commit data... | |
| constexpr-union.C | Loading commit data... | |
| constexpr-value.C | Loading commit data... | |
| constexpr-value2.C | Loading commit data... | |
| constexpr-variadic.C | Loading commit data... | |
| decltype-33837.C | Loading commit data... | |
| decltype-33838.C | Loading commit data... | |
| decltype-38655.C | Loading commit data... | |
| decltype-refbug.C | Loading commit data... | |
| decltype1.C | Loading commit data... | |
| decltype10.C | Loading commit data... | |
| decltype11.C | Loading commit data... | |
| decltype12.C | Loading commit data... | |
| decltype13.C | Loading commit data... | |
| decltype14.C | Loading commit data... | |
| decltype15.C | Loading commit data... | |
| decltype16.C | Loading commit data... | |
| decltype17.C | Loading commit data... | |
| decltype18.C | Loading commit data... | |
| decltype19.C | Loading commit data... | |
| decltype2.C | Loading commit data... | |
| decltype20.C | Loading commit data... | |
| decltype22.C | Loading commit data... | |
| decltype23.C | Loading commit data... | |
| decltype3.C | Loading commit data... | |
| decltype4.C | Loading commit data... | |
| decltype5.C | Loading commit data... | |
| decltype6.C | Loading commit data... | |
| decltype7.C | Loading commit data... | |
| decltype8.C | Loading commit data... | |
| decltype9.C | Loading commit data... | |
| deduce.C | Loading commit data... | |
| defaulted1.C | Loading commit data... | |
| defaulted10.C | Loading commit data... | |
| defaulted11.C | Loading commit data... | |
| defaulted13.C | Loading commit data... | |
| defaulted14.C | Loading commit data... | |
| defaulted15.C | Loading commit data... | |
| defaulted16.C | Loading commit data... | |
| defaulted17.C | Loading commit data... | |
| defaulted18.C | Loading commit data... | |
| defaulted19.C | Loading commit data... | |
| defaulted2.C | Loading commit data... | |
| defaulted20.C | Loading commit data... | |
| defaulted21.C | Loading commit data... | |
| defaulted3.C | Loading commit data... | |
| defaulted4.C | Loading commit data... | |
| defaulted5.C | Loading commit data... | |
| defaulted6.C | Loading commit data... | |
| defaulted7.C | Loading commit data... | |
| defaulted8.C | Loading commit data... | |
| defaulted9.C | Loading commit data... | |
| elision.C | Loading commit data... | |
| elision_neg.C | Loading commit data... | |
| elision_weak.C | Loading commit data... | |
| enum1.C | Loading commit data... | |
| enum2.C | Loading commit data... | |
| enum3.C | Loading commit data... | |
| enum4.C | Loading commit data... | |
| enum5.C | Loading commit data... | |
| enum6.C | Loading commit data... | |
| enum7.C | Loading commit data... | |
| enum_base.C | Loading commit data... | |
| enum_base_warn.C | Loading commit data... | |
| error1.C | Loading commit data... | |
| error2.C | Loading commit data... | |
| explicit1.C | Loading commit data... | |
| explicit2.C | Loading commit data... | |
| explicit3.C | Loading commit data... | |
| explicit4.C | Loading commit data... | |
| explicit5.C | Loading commit data... | |
| extern_template-1.C | Loading commit data... | |
| extern_template-2.C | Loading commit data... | |
| extern_template-3.C | Loading commit data... | |
| fntmpdefarg1.C | Loading commit data... | |
| forw_enum1.C | Loading commit data... | |
| forw_enum2.C | Loading commit data... | |
| forw_enum3.C | Loading commit data... | |
| forw_enum4.C | Loading commit data... | |
| forw_enum5.C | Loading commit data... | |
| forw_enum6.C | Loading commit data... | |
| forw_enum7.C | Loading commit data... | |
| forw_enum8.C | Loading commit data... | |
| forw_enum9.C | Loading commit data... | |
| implicit-copy.C | Loading commit data... | |
| implicit1.C | Loading commit data... | |
| implicit10.C | Loading commit data... | |
| implicit2.C | Loading commit data... | |
| implicit3.C | Loading commit data... | |
| implicit4.C | Loading commit data... | |
| implicit5.C | Loading commit data... | |
| implicit6.C | Loading commit data... | |
| implicit7.C | Loading commit data... | |
| implicit8.C | Loading commit data... | |
| implicit9.C | Loading commit data... | |
| initlist-deduce.C | Loading commit data... | |
| initlist-opt.C | Loading commit data... | |
| initlist1.C | Loading commit data... | |
| initlist10.C | Loading commit data... | |
| initlist11.C | Loading commit data... | |
| initlist12.C | Loading commit data... | |
| initlist13.C | Loading commit data... | |
| initlist14.C | Loading commit data... | |
| initlist15.C | Loading commit data... | |
| initlist16.C | Loading commit data... | |
| initlist17.C | Loading commit data... | |
| initlist18.C | Loading commit data... | |
| initlist19.C | Loading commit data... | |
| initlist2.C | Loading commit data... | |
| initlist20.C | Loading commit data... | |
| initlist21.C | Loading commit data... | |
| initlist22.C | Loading commit data... | |
| initlist23.C | Loading commit data... | |
| initlist24.C | Loading commit data... | |
| initlist25.C | Loading commit data... | |
| initlist26.C | Loading commit data... | |
| initlist27.C | Loading commit data... | |
| initlist28.C | Loading commit data... | |
| initlist29.C | Loading commit data... | |
| initlist3.C | Loading commit data... | |
| initlist30.C | Loading commit data... | |
| initlist31.C | Loading commit data... | |
| initlist32.C | Loading commit data... | |
| initlist33.C | Loading commit data... | |
| initlist34.C | Loading commit data... | |
| initlist35.C | Loading commit data... | |
| initlist36.C | Loading commit data... | |
| initlist37.C | Loading commit data... | |
| initlist38.C | Loading commit data... | |
| initlist39.C | Loading commit data... | |
| initlist4.C | Loading commit data... | |
| initlist40.C | Loading commit data... | |
| initlist41.C | Loading commit data... | |
| initlist42.C | Loading commit data... | |
| initlist43.C | Loading commit data... | |
| initlist44.C | Loading commit data... | |
| initlist45.C | Loading commit data... | |
| initlist5.C | Loading commit data... | |
| initlist6.C | Loading commit data... | |
| initlist7.C | Loading commit data... | |
| initlist8.C | Loading commit data... | |
| initlist9.C | Loading commit data... | |
| inline-ns1.C | Loading commit data... | |
| inline-ns2.C | Loading commit data... | |
| inline-ns3.C | Loading commit data... | |
| inline-ns4.C | Loading commit data... | |
| inline-ns5.C | Loading commit data... | |
| iop.C | Loading commit data... | |
| linkage2.C | Loading commit data... | |
| long_long.C | Loading commit data... | |
| named.C | Loading commit data... | |
| named_refs.C | Loading commit data... | |
| noexcept01.C | Loading commit data... | |
| noexcept02.C | Loading commit data... | |
| noexcept03.C | Loading commit data... | |
| noexcept04.C | Loading commit data... | |
| noexcept05.C | Loading commit data... | |
| noexcept06.C | Loading commit data... | |
| noexcept07.C | Loading commit data... | |
| noexcept08.C | Loading commit data... | |
| noexcept09.C | Loading commit data... | |
| nolinkage1.C | Loading commit data... | |
| nolinkage1.h | Loading commit data... | |
| nolinkage1a.cc | Loading commit data... | |
| not_special.C | Loading commit data... | |
| nullptr01.C | Loading commit data... | |
| nullptr02.C | Loading commit data... | |
| nullptr03.C | Loading commit data... | |
| nullptr04.C | Loading commit data... | |
| nullptr05.C | Loading commit data... | |
| nullptr06.C | Loading commit data... | |
| nullptr07.C | Loading commit data... | |
| nullptr08.C | Loading commit data... | |
| nullptr09.C | Loading commit data... | |
| nullptr10.C | Loading commit data... | |
| nullptr11.C | Loading commit data... | |
| nullptr12.C | Loading commit data... | |
| nullptr13.C | Loading commit data... | |
| nullptr14.C | Loading commit data... | |
| nullptr15.C | Loading commit data... | |
| nullptr16.C | Loading commit data... | |
| nullptr17.C | Loading commit data... | |
| nullptr18.C | Loading commit data... | |
| nullptr19.C | Loading commit data... | |
| nullptr20.C | Loading commit data... | |
| nullptr21.C | Loading commit data... | |
| nullptr22.C | Loading commit data... | |
| overload-conv-1.C | Loading commit data... | |
| overload-conv-2.C | Loading commit data... | |
| overload.C | Loading commit data... | |
| overloadn.C | Loading commit data... | |
| parse1.C | Loading commit data... | |
| pr31431-2.C | Loading commit data... | |
| pr31431.C | Loading commit data... | |
| pr31432.C | Loading commit data... | |
| pr31434.C | Loading commit data... | |
| pr31437.C | Loading commit data... | |
| pr31438.C | Loading commit data... | |
| pr31439.C | Loading commit data... | |
| pr31442.C | Loading commit data... | |
| pr31443.C | Loading commit data... | |
| pr31444.C | Loading commit data... | |
| pr31445.C | Loading commit data... | |
| pr31993.C | Loading commit data... | |
| pr32114.C | Loading commit data... | |
| pr32115.C | Loading commit data... | |
| pr32125.C | Loading commit data... | |
| pr32126.C | Loading commit data... | |
| pr32127.C | Loading commit data... | |
| pr32128.C | Loading commit data... | |
| pr32252.C | Loading commit data... | |
| pr32253.C | Loading commit data... | |
| pr32566.C | Loading commit data... | |
| pr33839.C | Loading commit data... | |
| pr33930.C | Loading commit data... | |
| pr33955.C | Loading commit data... | |
| pr33996.C | Loading commit data... | |
| pr34054.C | Loading commit data... | |
| pr34056.C | Loading commit data... | |
| pr34057.C | Loading commit data... | |
| pr34058.C | Loading commit data... | |
| pr34060.C | Loading commit data... | |
| pr34061.C | Loading commit data... | |
| pr38646.C | Loading commit data... | |
| pr38795.C | Loading commit data... | |
| pr39639.C | Loading commit data... | |
| pr42844-2.C | Loading commit data... | |
| pr45908.C | Loading commit data... | |
| range-for1.C | Loading commit data... | |
| range-for2.C | Loading commit data... | |
| range-for3.C | Loading commit data... | |
| range-for4.C | Loading commit data... | |
| range-for5.C | Loading commit data... | |
| range-for6.C | Loading commit data... | |
| range-for7.C | Loading commit data... | |
| reference_collapsing.C | Loading commit data... | |
| rv-cast.C | Loading commit data... | |
| rv-deduce.C | Loading commit data... | |
| rv-lvalue-req.C | Loading commit data... | |
| rv-reinterpret.C | Loading commit data... | |
| rv-return.C | Loading commit data... | |
| rv-trivial-bug.C | Loading commit data... | |
| rv10.C | Loading commit data... | |
| rv1n.C | Loading commit data... | |
| rv1p.C | Loading commit data... | |
| rv2n.C | Loading commit data... | |
| rv2p.C | Loading commit data... | |
| rv3n.C | Loading commit data... | |
| rv3p.C | Loading commit data... | |
| rv4n.C | Loading commit data... | |
| rv4p.C | Loading commit data... | |
| rv5n.C | Loading commit data... | |
| rv5p.C | Loading commit data... | |
| rv6n.C | Loading commit data... | |
| rv6p.C | Loading commit data... | |
| rv7n.C | Loading commit data... | |
| rv7p.C | Loading commit data... | |
| rv8p.C | Loading commit data... | |
| rv9p.C | Loading commit data... | |
| rvo.C | Loading commit data... | |
| scoped_enum.C | Loading commit data... | |
| scoped_enum2.C | Loading commit data... | |
| scoped_enum_98.C | Loading commit data... | |
| scoped_enum_examples.C | Loading commit data... | |
| sfinae1.C | Loading commit data... | |
| sfinae2.C | Loading commit data... | |
| sfinae3.C | Loading commit data... | |
| sfinae4.C | Loading commit data... | |
| sfinae5.C | Loading commit data... | |
| static_assert1.C | Loading commit data... | |
| static_assert2.C | Loading commit data... | |
| static_assert3.C | Loading commit data... | |
| static_assert4.C | Loading commit data... | |
| std-layout1.C | Loading commit data... | |
| temp-constructor-bug.C | Loading commit data... | |
| temp-va-arg-bug.C | Loading commit data... | |
| temp_default1.C | Loading commit data... | |
| temp_default2.C | Loading commit data... | |
| temp_default3.C | Loading commit data... | |
| temp_default4.C | Loading commit data... | |
| template_deduction.C | Loading commit data... | |
| trailing1.C | Loading commit data... | |
| trailing2.C | Loading commit data... | |
| trailing3.C | Loading commit data... | |
| trailing4.C | Loading commit data... | |
| trailing5.C | Loading commit data... | |
| trivial1.C | Loading commit data... | |
| union1.C | Loading commit data... | |
| union2.C | Loading commit data... | |
| union3.C | Loading commit data... | |
| unnamed_refs.C | Loading commit data... | |
| variadic-104.C | Loading commit data... | |
| variadic-bind.C | Loading commit data... | |
| variadic-crash1.C | Loading commit data... | |
| variadic-crash2.C | Loading commit data... | |
| variadic-ex1.C | Loading commit data... | |
| variadic-ex10.C | Loading commit data... | |
| variadic-ex11.C | Loading commit data... | |
| variadic-ex12.C | Loading commit data... | |
| variadic-ex13.C | Loading commit data... | |
| variadic-ex14.C | Loading commit data... | |
| variadic-ex2.C | Loading commit data... | |
| variadic-ex3.C | Loading commit data... | |
| variadic-ex4.C | Loading commit data... | |
| variadic-ex5.C | Loading commit data... | |
| variadic-ex6.C | Loading commit data... | |
| variadic-ex7.C | Loading commit data... | |
| variadic-ex8.C | Loading commit data... | |
| variadic-ex9.C | Loading commit data... | |
| variadic-function.C | Loading commit data... | |
| variadic-init.C | Loading commit data... | |
| variadic-lambda.C | Loading commit data... | |
| variadic-mem_fn.C | Loading commit data... | |
| variadic-new.C | Loading commit data... | |
| variadic-new2.C | Loading commit data... | |
| variadic-rref.C | Loading commit data... | |
| variadic-throw.C | Loading commit data... | |
| variadic-ttp.C | Loading commit data... | |
| variadic-tuple.C | Loading commit data... | |
| variadic-unify-2.C | Loading commit data... | |
| variadic-unify.C | Loading commit data... | |
| variadic1.C | Loading commit data... | |
| variadic10.C | Loading commit data... | |
| variadic100.C | Loading commit data... | |
| variadic101.C | Loading commit data... | |
| variadic102.C | Loading commit data... | |
| variadic103.C | Loading commit data... | |
| variadic11.C | Loading commit data... | |
| variadic12.C | Loading commit data... | |
| variadic13.C | Loading commit data... | |
| variadic14.C | Loading commit data... | |
| variadic15.C | Loading commit data... | |
| variadic16.C | Loading commit data... | |
| variadic17.C | Loading commit data... | |
| variadic18.C | Loading commit data... | |
| variadic19.C | Loading commit data... | |
| variadic2.C | Loading commit data... | |
| variadic20.C | Loading commit data... | |
| variadic21.C | Loading commit data... | |
| variadic22.C | Loading commit data... | |
| variadic23.C | Loading commit data... | |
| variadic24.C | Loading commit data... | |
| variadic25.C | Loading commit data... | |
| variadic26.C | Loading commit data... | |
| variadic27.C | Loading commit data... | |
| variadic28.C | Loading commit data... | |
| variadic29.C | Loading commit data... | |
| variadic3.C | Loading commit data... | |
| variadic30.C | Loading commit data... | |
| variadic31.C | Loading commit data... | |
| variadic32.C | Loading commit data... | |
| variadic33.C | Loading commit data... | |
| variadic34.C | Loading commit data... | |
| variadic35.C | Loading commit data... | |
| variadic36.C | Loading commit data... | |
| variadic37.C | Loading commit data... | |
| variadic38.C | Loading commit data... | |
| variadic39.C | Loading commit data... | |
| variadic4.C | Loading commit data... | |
| variadic40.C | Loading commit data... | |
| variadic41.C | Loading commit data... | |
| variadic42.C | Loading commit data... | |
| variadic43.C | Loading commit data... | |
| variadic44.C | Loading commit data... | |
| variadic45.C | Loading commit data... | |
| variadic46.C | Loading commit data... | |
| variadic47.C | Loading commit data... | |
| variadic48.C | Loading commit data... | |
| variadic49.C | Loading commit data... | |
| variadic5.C | Loading commit data... | |
| variadic50.C | Loading commit data... | |
| variadic51.C | Loading commit data... | |
| variadic52.C | Loading commit data... | |
| variadic53.C | Loading commit data... | |
| variadic54.C | Loading commit data... | |
| variadic55.C | Loading commit data... | |
| variadic56.C | Loading commit data... | |
| variadic57.C | Loading commit data... | |
| variadic58.C | Loading commit data... | |
| variadic59.C | Loading commit data... | |
| variadic6.C | Loading commit data... | |
| variadic60.C | Loading commit data... | |
| variadic61.C | Loading commit data... | |
| variadic62.C | Loading commit data... | |
| variadic63.C | Loading commit data... | |
| variadic64.C | Loading commit data... | |
| variadic65.C | Loading commit data... | |
| variadic66.C | Loading commit data... | |
| variadic67.C | Loading commit data... | |
| variadic68.C | Loading commit data... | |
| variadic69.C | Loading commit data... | |
| variadic7.C | Loading commit data... | |
| variadic70.C | Loading commit data... | |
| variadic71.C | Loading commit data... | |
| variadic72.C | Loading commit data... | |
| variadic73.C | Loading commit data... | |
| variadic74.C | Loading commit data... | |
| variadic75.C | Loading commit data... | |
| variadic76.C | Loading commit data... | |
| variadic77.C | Loading commit data... | |
| variadic78.C | Loading commit data... | |
| variadic79.C | Loading commit data... | |
| variadic8.C | Loading commit data... | |
| variadic80.C | Loading commit data... | |
| variadic81.C | Loading commit data... | |
| variadic82.C | Loading commit data... | |
| variadic83.C | Loading commit data... | |
| variadic84.C | Loading commit data... | |
| variadic85.C | Loading commit data... | |
| variadic86.C | Loading commit data... | |
| variadic87.C | Loading commit data... | |
| variadic88.C | Loading commit data... | |
| variadic89.C | Loading commit data... | |
| variadic9.C | Loading commit data... | |
| variadic90.C | Loading commit data... | |
| variadic91.C | Loading commit data... | |
| variadic92.C | Loading commit data... | |
| variadic93.C | Loading commit data... | |
| variadic94.C | Loading commit data... | |
| variadic95.C | Loading commit data... | |
| variadic96.C | Loading commit data... | |
| variadic97.C | Loading commit data... | |
| variadic98.C | Loading commit data... | |
| variadic99.C | Loading commit data... | |
| vt-33964.C | Loading commit data... | |
| vt-34050.C | Loading commit data... | |
| vt-34051-2.C | Loading commit data... | |
| vt-34051.C | Loading commit data... | |
| vt-34052.C | Loading commit data... | |
| vt-34055.C | Loading commit data... | |
| vt-34102.C | Loading commit data... | |
| vt-34103.C | Loading commit data... | |
| vt-34219-2.C | Loading commit data... | |
| vt-34219.C | Loading commit data... | |
| vt-34314.C | Loading commit data... | |
| vt-34399.C | Loading commit data... | |
| vt-34606.C | Loading commit data... | |
| vt-34751.C | Loading commit data... | |
| vt-34753.C | Loading commit data... | |
| vt-34754.C | Loading commit data... | |
| vt-34755.C | Loading commit data... | |
| vt-34919.C | Loading commit data... | |
| vt-34961.C | Loading commit data... | |
| vt-35023.C | Loading commit data... | |
| vt-35024.C | Loading commit data... | |
| vt-35026.C | Loading commit data... | |
| vt-35147.C | Loading commit data... | |
| vt-35242.C | Loading commit data... | |
| vt-35243.C | Loading commit data... | |
| vt-35331.C | Loading commit data... | |
| vt-37737-1.C | Loading commit data... | |
| vt-37737-2.C | Loading commit data... | |
| vt-40092.C | Loading commit data... | |
| warn_cxx0x.C | Loading commit data... |