gcc/ChangeLog: * convert.c (convert_to_real_1): When converting from a REAL_TYPE, preserve the location of EXPR in the result. * tree.c (get_pure_location): Make non-static. (set_source_range): Return the resulting location_t. (make_location): New function. * tree.h (get_pure_location): New decl. (get_finish): New inline function. (set_source_range): Convert return type from void to location_t. (make_location): New decl. gcc/cp/ChangeLog: * cp-tree.h (class cp_expr): New class. (finish_parenthesized_expr): Convert return type and param to cp_expr. (perform_koenig_lookup): Convert return type and param from tree to cp_expr. (finish_increment_expr): Likewise. (finish_unary_op_expr): Likewise. (finish_id_expression): Likewise for return type. (build_class_member_access_expr): Likewise for param. (finish_class_member_access_expr): Likewise. (build_x_unary_op): Likewise. (build_c_cast): New decl. (build_x_modify_expr): Convert return type from tree to cp_expr. * cvt.c (cp_convert_and_check): When warning about conversions, attempt to use the location of "expr" if available, otherwise falling back to the old behavior of using input_location. * name-lookup.c (lookup_arg_dependent_1): Convert return type from tree to cp_expr. (lookup_arg_dependent): Likewise; also for local "ret". * name-lookup.h (lookup_arg_dependent): Likewise for return type. * parser.c (cp_lexer_previous_token): Skip past purged tokens. (struct cp_parser_expression_stack_entry): Convert field "lhs" to cp_expr. (cp_parser_identifier): Likewise for return type. Use cp_expr ctor to preserve the token's location. (cp_parser_string_literal): Likewise, building up a meaningful location for the case where a compound string literal is built by concatentation. (cp_parser_userdef_char_literal): Likewise for return type. (cp_parser_userdef_numeric_literal): Likewise. (cp_parser_statement_expr): Convert return type to cp_expr. Generate a suitable location for the expr and return it via the cp_expr ctor. (cp_parser_fold_expression): Convert return type to cp_expr. (cp_parser_primary_expression): Likewise, and for locals "expr", "lam", "id_expression", "decl". Use cp_expr ctor when parsing literals, to preserve the spelling location of the token. Preserve the locations of parentheses. Preserve location when calling objc_lookup_ivar. Preserve the location for "this" tokens. Generate suitable locations for "__builtin_va_arg" constructs and for Objective C 2.0 dot-syntax. Set the location for the result of finish_id_expression. (cp_parser_primary_expression): Convert return type from tree to cp_expr. (cp_parser_id_expression): Likewise. (cp_parser_unqualified_id): Likewise. Also for local "id". (cp_parser_postfix_expression): Likewise, also for local "postfix_expression". Generate suitable locations for C++-style casts, "_Cilk_spawn" constructs. Convert local "initializer" to cp_expr and use it to preserve the location of compound literals. Capture the location of the closing parenthesis of a call site via cp_parser_parenthesized_expression_list, and use it to build a source range for a call. Use cp_expr in ternary expression. (cp_parser_postfix_dot_deref_expression): Convert param from tree to cp_expr. Generate and set a location. (cp_parser_parenthesized_expression_list): Add "close_paren_loc" out-param, and write back to it. (cp_parser_unary_expression): Convert return type from tree to cp_expr. Also for locals "cast_expression" and "expression". Generate and use suitable locations for addresses of labels and for cast expressions. Call cp_expr::set_location where necessary. Preserve the locations of negated numeric literals. (cp_parser_new_expression): Generate meaningful locations/ranges. (cp_parser_cast_expression): Convert return type from tree to cp_expr; also for local "expr". Use the paren location to generate a meaningful range for the expression. (cp_parser_binary_expression): Convert return type from tree to cp_expr; also for local "rhs". Generate a meaningful location for the expression, and use it. Replace call to protected_set_expr_location by converting a build2 to a build2_loc and using the location in the call to build_x_binary_op, adding a cp_expr::set_location to the latter case. (cp_parser_question_colon_clause): Convert param from tree to cp_expr; also for local "assignment_expr". Set the spelling range of the expression. (cp_parser_assignment_expression): Likewise for return type and locals "expr" and "rhs". Build a meaningful spelling range for the expression. Remove saving of input_location in favor of a call to cp_expr::set_location. (cp_parser_expression): Convert return type and locals "expression" and "assignment_expression" to cp_expr. Build a meaningful spelling range for assignment expressions. (cp_parser_constant_expression): Likewise for return type and local "expression". (cp_parser_builtin_offsetof): Convert return type and local "expr" to cp_expr. Generate suitable locations. (cp_parser_lambda_expression): Convert return return type to cp_expr. (cp_parser_operator_function_id): Likewise. (cp_parser_operator): Likewise. Generate a meaningful range, using cp_expr's ctor to return it. (cp_parser_template_id): When converting a token to CPP_TEMPLATE_ID, update the location. (cp_parser_initializer_clause): Convert return type and local "initializer" to cp_expr. (cp_parser_braced_list): Likewise for return type. Generate suitable locations. (cp_parser_lookup_name): Likewise for return type. Use cp_expr's ctor to preserve the location_t of the name. (cp_parser_simple_cast_expression): Likewise for return type. (cp_parser_functional_cast): Convert return type and local "cast" to cp_expr. Generate suitable locations. (cp_parser_objc_expression): Convert return type to cp_expr.k Generate (cp_parser_objc_message_expression): Generate suitable locations. (cp_parser_objc_encode_expression): Convert return type to cp_expr. Generate suitable locations. (cp_parser_objc_protocol_expression): Generate suitable locations. (cp_parser_objc_selector_expression): Generate suitable locations. (cp_parser_omp_for_cond): Attempt to use the location of "cond" for the binary op. (cp_parser_transaction_expression): Issue the tm-not-enabled error at the location of the __transaction_foo token, rather than at input_location. * semantics.c (finish_parenthesized_expr): Convert return type and param to cp_expr. Preserve location. (perform_koenig_lookup): Likewise for return type and param. (finish_increment_expr): Likewise. Generate suitable locations. (finish_unary_op_expr): Likewise for return type and local "result". Generate suitable locations. (finish_id_expression): Convert return type to cp_expr and use cp_expr ctor to preserve location information. * typeck.c (build_class_member_access_expr): Convert param to cp_expr. (finish_class_member_access_expr): Likewise. (cp_build_binary_op): Convert a build2 to a build2_loc. (build_x_unary_op): Convert param from tree to cp_expr. (build_nop): Preserve the location of EXPR. (build_c_cast): Provide an overloaded variant that takes a cp_expr and returns a cp_expr. (build_x_modify_expr): Convert return type from tree to cp_expr. gcc/testsuite/ChangeLog: * g++.dg/cpp0x/nsdmi-template14.C: Move dg-error directive. * g++.dg/gomp/loop-1.C: Update dg-error locations. * g++.dg/plugin/diagnostic-test-expressions-1.C: New file, adapted from gcc.dg/plugin/diagnostic-test-expressions-1.c. * g++.dg/plugin/plugin.exp (plugin_test_list): Add the above. * g++.dg/template/crash55.C: Update dg-error directives. * g++.dg/template/pseudodtor3.C: Update column numbers in dg-error directives. * g++.dg/template/pr64100.C: Update location of dg-error directive. * g++.dg/template/ref3.C: Add XFAIL (PR c++/68699). * g++.dg/ubsan/pr63956.C: Update dg directives to reflect improved location information. * g++.dg/warn/pr35635.C (func3): Update location of a dg-warning. * g++.dg/warn/Wconversion-real-integer2.C: Update location of dg-warning; add a dg-message. * obj-c++.dg/plugin/diagnostic-test-expressions-1.mm: New file, based on objc.dg/plugin/diagnostic-test-expressions-1.m. * obj-c++.dg/plugin/plugin.exp: New file, based on objc.dg/plugin/plugin.exp. From-SVN: r231293
| Name |
Last commit
|
Last update |
|---|---|---|
| .. | ||
| Waddress-1.C | Loading commit data... | |
| Waddress-2.C | Loading commit data... | |
| Wall-write-strings.C | Loading commit data... | |
| Walways-true-1.C | Loading commit data... | |
| Walways-true-2.C | Loading commit data... | |
| Walways-true-3.C | Loading commit data... | |
| Warray-bounds-2.C | Loading commit data... | |
| Warray-bounds-3.C | Loading commit data... | |
| Warray-bounds-4.C | Loading commit data... | |
| Warray-bounds-5.C | Loading commit data... | |
| Warray-bounds-6.C | Loading commit data... | |
| Warray-bounds-7.C | Loading commit data... | |
| Warray-bounds.C | Loading commit data... | |
| Wbraces1.C | Loading commit data... | |
| Wbraces2.C | Loading commit data... | |
| Wbraces3.C | Loading commit data... | |
| Wbraces4.C | Loading commit data... | |
| Wcast-qual1.C | Loading commit data... | |
| Wcast-qual2.C | Loading commit data... | |
| Wchar-subscripts-2.C | Loading commit data... | |
| Wchar-subscripts.C | Loading commit data... | |
| Wconditionally-supported-1.C | Loading commit data... | |
| Wconversion-integer.C | Loading commit data... | |
| Wconversion-null-2.C | Loading commit data... | |
| Wconversion-null-3.C | Loading commit data... | |
| Wconversion-null.C | Loading commit data... | |
| Wconversion-pr34389.C | Loading commit data... | |
| Wconversion-real-integer-3.C | Loading commit data... | |
| Wconversion-real-integer.C | Loading commit data... | |
| Wconversion-real-integer2.C | Loading commit data... | |
| Wconversion-real.C | Loading commit data... | |
| Wconversion1.C | Loading commit data... | |
| Wconversion2.C | Loading commit data... | |
| Wconversion3.C | Loading commit data... | |
| Wconversion4.C | Loading commit data... | |
| Wctor-dtor.C | Loading commit data... | |
| Wdelete-incomplete-1.C | Loading commit data... | |
| Wdelete-incomplete-2.C | Loading commit data... | |
| Wdelete-incomplete-3.C | Loading commit data... | |
| Wdelete-incomplete-4.C | Loading commit data... | |
| Wdiv-by-zero-2.C | Loading commit data... | |
| Wdiv-by-zero-bogus-2.C | Loading commit data... | |
| Wdiv-by-zero-bogus.C | Loading commit data... | |
| Wdiv-by-zero.C | Loading commit data... | |
| Wdouble-promotion.C | Loading commit data... | |
| Wdtor1.C | Loading commit data... | |
| Wenum-compare-no-2.C | Loading commit data... | |
| Wenum-compare-no.C | Loading commit data... | |
| Wenum-compare.C | Loading commit data... | |
| Wextra-1.C | Loading commit data... | |
| Wextra-2.C | Loading commit data... | |
| Wextra-3.C | Loading commit data... | |
| Wfloat-equal-1.C | Loading commit data... | |
| Wformat-1.C | Loading commit data... | |
| Winit-self-2.C | Loading commit data... | |
| Winit-self-3.C | Loading commit data... | |
| Winit-self.C | Loading commit data... | |
| Winline-1.C | Loading commit data... | |
| Winline-2.C | Loading commit data... | |
| Winline-3.C | Loading commit data... | |
| Winline-4.C | Loading commit data... | |
| Wlogical-op-1.C | Loading commit data... | |
| Wlogical-op-2.C | Loading commit data... | |
| Wmemset-transposed-args-1.C | Loading commit data... | |
| Wmissing-declarations-1.C | Loading commit data... | |
| Wmissing-field-initializers-1.C | Loading commit data... | |
| Wno-div-by-zero.C | Loading commit data... | |
| Wno-return-local-addr.C | Loading commit data... | |
| Wnonnull1.C | Loading commit data... | |
| Wnull-conversion-1.C | Loading commit data... | |
| Wnull-conversion-2.C | Loading commit data... | |
| Wnvdtor-2.C | Loading commit data... | |
| Wnvdtor-3.C | Loading commit data... | |
| Wnvdtor-4.C | Loading commit data... | |
| Wnvdtor.C | Loading commit data... | |
| Woverflow-1.C | Loading commit data... | |
| Woverflow-2.C | Loading commit data... | |
| Woverflow-3.C | Loading commit data... | |
| Woverflow-4.C | Loading commit data... | |
| Woverloaded-1.C | Loading commit data... | |
| Wparentheses-1.C | Loading commit data... | |
| Wparentheses-10.C | Loading commit data... | |
| Wparentheses-11.C | Loading commit data... | |
| Wparentheses-12.C | Loading commit data... | |
| Wparentheses-13.C | Loading commit data... | |
| Wparentheses-14.C | Loading commit data... | |
| Wparentheses-15.C | Loading commit data... | |
| Wparentheses-16.C | Loading commit data... | |
| Wparentheses-17.C | Loading commit data... | |
| Wparentheses-18.C | Loading commit data... | |
| Wparentheses-19.C | Loading commit data... | |
| Wparentheses-2.C | Loading commit data... | |
| Wparentheses-20.C | Loading commit data... | |
| Wparentheses-21.C | Loading commit data... | |
| Wparentheses-22.C | Loading commit data... | |
| Wparentheses-23.C | Loading commit data... | |
| Wparentheses-24.C | Loading commit data... | |
| Wparentheses-25.C | Loading commit data... | |
| Wparentheses-26.C | Loading commit data... | |
| Wparentheses-27.C | Loading commit data... | |
| Wparentheses-28.C | Loading commit data... | |
| Wparentheses-3.C | Loading commit data... | |
| Wparentheses-4.C | Loading commit data... | |
| Wparentheses-5.C | Loading commit data... | |
| Wparentheses-6.C | Loading commit data... | |
| Wparentheses-7.C | Loading commit data... | |
| Wparentheses-8.C | Loading commit data... | |
| Wparentheses-9.C | Loading commit data... | |
| Wplacement-new-size.C | Loading commit data... | |
| Wpointer-arith-1.C | Loading commit data... | |
| Wredundant-decls-spec.C | Loading commit data... | |
| Wreorder-1.C | Loading commit data... | |
| Wreturn-1.C | Loading commit data... | |
| Wreturn-2.C | Loading commit data... | |
| Wreturn-3.C | Loading commit data... | |
| Wreturn-4.C | Loading commit data... | |
| Wreturn-local-addr-2.C | Loading commit data... | |
| Wreturn-local-addr.C | Loading commit data... | |
| Wreturn-type-1.C | Loading commit data... | |
| Wreturn-type-10.C | Loading commit data... | |
| Wreturn-type-2.C | Loading commit data... | |
| Wreturn-type-3.C | Loading commit data... | |
| Wreturn-type-4.C | Loading commit data... | |
| Wreturn-type-5.C | Loading commit data... | |
| Wreturn-type-6.C | Loading commit data... | |
| Wreturn-type-7.C | Loading commit data... | |
| Wreturn-type-8.C | Loading commit data... | |
| Wreturn-type-9.C | Loading commit data... | |
| Wsequence-point-1.C | Loading commit data... | |
| Wsequence-point-2.C | Loading commit data... | |
| Wsequence-point-3.C | Loading commit data... | |
| Wsequence-point-pr18050.C | Loading commit data... | |
| Wshadow-1.C | Loading commit data... | |
| Wshadow-10.C | Loading commit data... | |
| Wshadow-11.C | Loading commit data... | |
| Wshadow-2.C | Loading commit data... | |
| Wshadow-3.C | Loading commit data... | |
| Wshadow-4.C | Loading commit data... | |
| Wshadow-5.C | Loading commit data... | |
| Wshadow-6.C | Loading commit data... | |
| Wshadow-7.C | Loading commit data... | |
| Wshadow-8.C | Loading commit data... | |
| Wshadow-9.C | Loading commit data... | |
| Wsign-compare-1.C | Loading commit data... | |
| Wsign-compare-2.C | Loading commit data... | |
| Wsign-compare-3.C | Loading commit data... | |
| Wsign-compare-4.C | Loading commit data... | |
| Wsign-compare-5.C | Loading commit data... | |
| Wsign-compare-6.C | Loading commit data... | |
| Wsign-compare-7.C | Loading commit data... | |
| Wsign-conversion-2.C | Loading commit data... | |
| Wsign-conversion.C | Loading commit data... | |
| Wsizeof-pointer-memaccess-1.C | Loading commit data... | |
| Wstrict-aliasing-1.C | Loading commit data... | |
| Wstrict-aliasing-2.C | Loading commit data... | |
| Wstrict-aliasing-3.C | Loading commit data... | |
| Wstrict-aliasing-4.C | Loading commit data... | |
| Wstrict-aliasing-5.C | Loading commit data... | |
| Wstrict-aliasing-6.C | Loading commit data... | |
| Wstrict-aliasing-7.C | Loading commit data... | |
| Wstrict-aliasing-8.C | Loading commit data... | |
| Wstrict-aliasing-bogus-base-derived.C | Loading commit data... | |
| Wstrict-aliasing-bogus-char-1.C | Loading commit data... | |
| Wstrict-aliasing-bogus-const.C | Loading commit data... | |
| Wstrict-aliasing-bogus-escape-2.C | Loading commit data... | |
| Wstrict-aliasing-bogus-escape-3.C | Loading commit data... | |
| Wstrict-aliasing-bogus-escape.C | Loading commit data... | |
| Wstrict-aliasing-bogus-nested-arrays.C | Loading commit data... | |
| Wstrict-aliasing-bogus-placement-new.C | Loading commit data... | |
| Wstrict-aliasing-bogus-signed-unsigned.C | Loading commit data... | |
| Wstrict-aliasing-bogus-struct-included.C | Loading commit data... | |
| Wstrict-aliasing-bogus-union.C | Loading commit data... | |
| Wstrict-aliasing-float-ref-int-obj.C | Loading commit data... | |
| Wstring-literal-comparison-1.C | Loading commit data... | |
| Wstring-literal-comparison-2.C | Loading commit data... | |
| Wstring-literal-comparison-3.C | Loading commit data... | |
| Wstring-literal-comparison-4.C | Loading commit data... | |
| Wsubobject-linkage-1.C | Loading commit data... | |
| Wsubobject-linkage-2.C | Loading commit data... | |
| Wsubobject-linkage-3.C | Loading commit data... | |
| Wsubobject-linkage-4.C | Loading commit data... | |
| Wsuggest-final-2.C | Loading commit data... | |
| Wsuggest-final.C | Loading commit data... | |
| Wsuggest-override.C | Loading commit data... | |
| Wswitch-1.C | Loading commit data... | |
| Wswitch-2.C | Loading commit data... | |
| Wswitch-3.C | Loading commit data... | |
| Wswitch-default-1.C | Loading commit data... | |
| Wswitch-default-2.C | Loading commit data... | |
| Wsystem-headers1.C | Loading commit data... | |
| Wsystem-headers1a.C | Loading commit data... | |
| Wtautological-compare.C | Loading commit data... | |
| Wtautological-compare2.C | Loading commit data... | |
| Wterminate1.C | Loading commit data... | |
| Wtype-limits-Wextra.C | Loading commit data... | |
| Wtype-limits-no.C | Loading commit data... | |
| Wtype-limits.C | Loading commit data... | |
| Wtype-limits2.C | Loading commit data... | |
| Wuninitializable-member-no.C | Loading commit data... | |
| Wuninitializable-member.C | Loading commit data... | |
| Wuninitialized-1.C | Loading commit data... | |
| Wuninitialized-2.C | Loading commit data... | |
| Wuninitialized-3.C | Loading commit data... | |
| Wuninitialized-4.C | Loading commit data... | |
| Wuninitialized-5.C | Loading commit data... | |
| Wuninitialized-6.C | Loading commit data... | |
| Wunreachable-code-1.C | Loading commit data... | |
| Wunreachable-code-2.C | Loading commit data... | |
| Wunused-1.C | Loading commit data... | |
| Wunused-10.C | Loading commit data... | |
| Wunused-11.C | Loading commit data... | |
| Wunused-12.C | Loading commit data... | |
| Wunused-13.C | Loading commit data... | |
| Wunused-14.C | Loading commit data... | |
| Wunused-15.C | Loading commit data... | |
| Wunused-16.C | Loading commit data... | |
| Wunused-17.C | Loading commit data... | |
| Wunused-2.C | Loading commit data... | |
| Wunused-3.C | Loading commit data... | |
| Wunused-4.C | Loading commit data... | |
| Wunused-5.C | Loading commit data... | |
| Wunused-6.C | Loading commit data... | |
| Wunused-7.C | Loading commit data... | |
| Wunused-8.C | Loading commit data... | |
| Wunused-9.C | Loading commit data... | |
| Wunused-function1.C | Loading commit data... | |
| Wunused-label-1.C | Loading commit data... | |
| Wunused-label-2.C | Loading commit data... | |
| Wunused-label-3.C | Loading commit data... | |
| Wunused-local-typedefs-2.C | Loading commit data... | |
| Wunused-local-typedefs-3.C | Loading commit data... | |
| Wunused-local-typedefs.C | Loading commit data... | |
| Wunused-parm-1.C | Loading commit data... | |
| Wunused-parm-2.C | Loading commit data... | |
| Wunused-parm-3.C | Loading commit data... | |
| Wunused-parm-4.C | Loading commit data... | |
| Wunused-parm-5.C | Loading commit data... | |
| Wunused-parm-6.C | Loading commit data... | |
| Wunused-result-1.C | Loading commit data... | |
| Wunused-var-1.C | Loading commit data... | |
| Wunused-var-10.C | Loading commit data... | |
| Wunused-var-11.C | Loading commit data... | |
| Wunused-var-12.C | Loading commit data... | |
| Wunused-var-13.C | Loading commit data... | |
| Wunused-var-14.C | Loading commit data... | |
| Wunused-var-15.C | Loading commit data... | |
| Wunused-var-16.C | Loading commit data... | |
| Wunused-var-17.C | Loading commit data... | |
| Wunused-var-18.C | Loading commit data... | |
| Wunused-var-19.C | Loading commit data... | |
| Wunused-var-2.C | Loading commit data... | |
| Wunused-var-20.C | Loading commit data... | |
| Wunused-var-21.C | Loading commit data... | |
| Wunused-var-22.C | Loading commit data... | |
| Wunused-var-23.C | Loading commit data... | |
| Wunused-var-3.C | Loading commit data... | |
| Wunused-var-4.C | Loading commit data... | |
| Wunused-var-5.C | Loading commit data... | |
| Wunused-var-6.C | Loading commit data... | |
| Wunused-var-7.C | Loading commit data... | |
| Wunused-var-8.C | Loading commit data... | |
| Wunused-var-9.C | Loading commit data... | |
| Wuseless-cast.C | Loading commit data... | |
| Wvla-1.C | Loading commit data... | |
| Wvla-2.C | Loading commit data... | |
| Wvla-3.C | Loading commit data... | |
| Wzero-as-null-pointer-constant-1.C | Loading commit data... | |
| Wzero-as-null-pointer-constant-2.C | Loading commit data... | |
| Wzero-as-null-pointer-constant-3.C | Loading commit data... | |
| Wzero-as-null-pointer-constant-4.C | Loading commit data... | |
| Wzero-as-null-pointer-constant-5.C | Loading commit data... | |
| Wzero-as-null-pointer-constant-6.C | Loading commit data... | |
| anonymous-namespace-1.C | Loading commit data... | |
| anonymous-namespace-1.h | Loading commit data... | |
| anonymous-namespace-2.C | Loading commit data... | |
| anonymous-namespace-2.h | Loading commit data... | |
| anonymous-namespace-3.C | Loading commit data... | |
| anonymous-namespace-3.h | Loading commit data... | |
| anonymous-namespace-4.C | Loading commit data... | |
| anonymous-namespace-4.h | Loading commit data... | |
| anonymous-namespace-5.C | Loading commit data... | |
| anonymous-namespace-6.C | Loading commit data... | |
| changes-meaning.C | Loading commit data... | |
| compare1.C | Loading commit data... | |
| conv1.C | Loading commit data... | |
| conv2.C | Loading commit data... | |
| conv3.C | Loading commit data... | |
| conv4.C | Loading commit data... | |
| conversion-function-1.C | Loading commit data... | |
| conversion-real-integer-3.h | Loading commit data... | |
| ctor-dtor-privacy-1.C | Loading commit data... | |
| ctor-dtor-privacy-2.C | Loading commit data... | |
| ctor-init-1.C | Loading commit data... | |
| ctor1.C | Loading commit data... | |
| delete-array-1.C | Loading commit data... | |
| delete-non-virtual-dtor.C | Loading commit data... | |
| deprecated-2.C | Loading commit data... | |
| deprecated-3.C | Loading commit data... | |
| deprecated-4.C | Loading commit data... | |
| deprecated-5.C | Loading commit data... | |
| deprecated-6.C | Loading commit data... | |
| deprecated-7.C | Loading commit data... | |
| deprecated-8.C | Loading commit data... | |
| deprecated-9.C | Loading commit data... | |
| deprecated.C | Loading commit data... | |
| do-empty.C | Loading commit data... | |
| effc1.C | Loading commit data... | |
| effc2.C | Loading commit data... | |
| effc3.C | Loading commit data... | |
| empty-body.C | Loading commit data... | |
| format1.C | Loading commit data... | |
| format2.C | Loading commit data... | |
| format3.C | Loading commit data... | |
| format4.C | Loading commit data... | |
| format5.C | Loading commit data... | |
| format6.C | Loading commit data... | |
| format7.C | Loading commit data... | |
| format8.C | Loading commit data... | |
| forward-inner.C | Loading commit data... | |
| friend.C | Loading commit data... | |
| huge-val1.C | Loading commit data... | |
| if-empty-1.C | Loading commit data... | |
| ignored_typedef.C | Loading commit data... | |
| implicit-typename1.C | Loading commit data... | |
| implicit-typename2.C | Loading commit data... | |
| implicit-typename3.C | Loading commit data... | |
| incomplete1.C | Loading commit data... | |
| incomplete2.C | Loading commit data... | |
| inline1.C | Loading commit data... | |
| inline2.C | Loading commit data... | |
| main-2.C | Loading commit data... | |
| main-3.C | Loading commit data... | |
| main-4.C | Loading commit data... | |
| main.C | Loading commit data... | |
| miss-format-1.C | Loading commit data... | |
| miss-format-2.C | Loading commit data... | |
| miss-format-3.C | Loading commit data... | |
| miss-format-4.C | Loading commit data... | |
| miss-format-5.C | Loading commit data... | |
| miss-format-6.C | Loading commit data... | |
| missing-field-init-1.C | Loading commit data... | |
| missing-field-init-2.C | Loading commit data... | |
| multiple-overflow-warn-1.C | Loading commit data... | |
| multiple-overflow-warn-2.C | Loading commit data... | |
| multiple-overflow-warn-3.C | Loading commit data... | |
| new1.C | Loading commit data... | |
| no-write-strings.C | Loading commit data... | |
| noeffect2.C | Loading commit data... | |
| noeffect4.C | Loading commit data... | |
| noeffect5.C | Loading commit data... | |
| noeffect6.C | Loading commit data... | |
| noeffect7.C | Loading commit data... | |
| noeffect8.C | Loading commit data... | |
| nonnull1.C | Loading commit data... | |
| nonnull2.C | Loading commit data... | |
| nonnull3.C | Loading commit data... | |
| noreturn-1.C | Loading commit data... | |
| noreturn-2.C | Loading commit data... | |
| noreturn-3.C | Loading commit data... | |
| noreturn-4.C | Loading commit data... | |
| noreturn-5.C | Loading commit data... | |
| noreturn-6.C | Loading commit data... | |
| noreturn-7.C | Loading commit data... | |
| null4.C | Loading commit data... | |
| oldcast1.C | Loading commit data... | |
| overflow-warn-1.C | Loading commit data... | |
| overflow-warn-3.C | Loading commit data... | |
| overflow-warn-4.C | Loading commit data... | |
| overflow-warn-5.C | Loading commit data... | |
| overflow-warn-6.C | Loading commit data... | |
| pedantic1.C | Loading commit data... | |
| pedantic2.C | Loading commit data... | |
| pmf1.C | Loading commit data... | |
| pmf2.C | Loading commit data... | |
| pointer-integer-comparison.C | Loading commit data... | |
| pr11159.C | Loading commit data... | |
| pr11492.C | Loading commit data... | |
| pr12242.C | Loading commit data... | |
| pr13358-2.C | Loading commit data... | |
| pr13358-3.C | Loading commit data... | |
| pr13358-4.C | Loading commit data... | |
| pr13358.C | Loading commit data... | |
| pr15774-1.C | Loading commit data... | |
| pr15774-2.C | Loading commit data... | |
| pr16302.C | Loading commit data... | |
| pr18016.C | Loading commit data... | |
| pr21983.C | Loading commit data... | |
| pr23075.C | Loading commit data... | |
| pr26785.C | Loading commit data... | |
| pr28943.C | Loading commit data... | |
| pr30551-2.C | Loading commit data... | |
| pr30551.C | Loading commit data... | |
| pr30636.C | Loading commit data... | |
| pr31246-2.C | Loading commit data... | |
| pr31246.C | Loading commit data... | |
| pr33160.C | Loading commit data... | |
| pr33738.C | Loading commit data... | |
| pr34985.C | Loading commit data... | |
| pr35602.C | Loading commit data... | |
| pr35635.C | Loading commit data... | |
| pr35711.C | Loading commit data... | |
| pr36069.C | Loading commit data... | |
| pr36921.C | Loading commit data... | |
| pr36954.C | Loading commit data... | |
| pr36999.C | Loading commit data... | |
| pr5310.C | Loading commit data... | |
| pr5645.C | Loading commit data... | |
| pr61945.C | Loading commit data... | |
| pr8570.C | Loading commit data... | |
| pr8715.C | Loading commit data... | |
| pragma-system_header1.C | Loading commit data... | |
| pragma-system_header1.h | Loading commit data... | |
| pragma-system_header2.C | Loading commit data... | |
| pragma-system_header2.h | Loading commit data... | |
| pragma-system_header3.C | Loading commit data... | |
| pragma-system_header3.h | Loading commit data... | |
| pragma-system_header4.C | Loading commit data... | |
| pragma-system_header4.h | Loading commit data... | |
| pragma-system_header5.C | Loading commit data... | |
| pragma-system_header5.h | Loading commit data... | |
| private1.C | Loading commit data... | |
| ref-temp1.C | Loading commit data... | |
| register-parm-1.C | Loading commit data... | |
| register-var-1.C | Loading commit data... | |
| register-var-2.C | Loading commit data... | |
| return-reference.C | Loading commit data... | |
| return-reference2.C | Loading commit data... | |
| sentinel.C | Loading commit data... | |
| sequence-pt-1.C | Loading commit data... | |
| sequence-pt-2.C | Loading commit data... | |
| sequence-pt-3.C | Loading commit data... | |
| sequence-pt-pr17880.C | Loading commit data... | |
| skip-1.C | Loading commit data... | |
| skip-2.C | Loading commit data... | |
| string1.C | Loading commit data... | |
| switch1.C | Loading commit data... | |
| template-1.C | Loading commit data... | |
| translate-ice-1.C | Loading commit data... | |
| undefined1.C | Loading commit data... | |
| unit-1.C | Loading commit data... | |
| unused-result1-Werror.c | Loading commit data... | |
| unused-result1.C | Loading commit data... | |
| unused-variable-1.C | Loading commit data... | |
| unused-variable-2.C | Loading commit data... | |
| var-args1.C | Loading commit data... | |
| volatile1.C | Loading commit data... | |
| warn_format_signedness.C | Loading commit data... | |
| warn_unused.C | Loading commit data... | |
| weak1.C | Loading commit data... | |
| write-strings-default.C | Loading commit data... | |
| write-strings.C | Loading commit data... |