gcc/gcc/testsuite/gcc.dg
David Malcolm ebedc9a341 Source range tracking in libcpp and C FE, with bit-packing optimization
This patch combines:
  [PATCH 05/10] Add ranges to libcpp tokens (via ad-hoc data, unoptimized)
  [PATCH 06/10] Track expression ranges in C frontend
  [PATCH 07/10] Add plugin to recursively dump the source-ranges in a tree (v2)
  [PATCH 08/10] Wire things up so that libcpp users get token underlines
  [PATCH 09/10] Delay some resolution of ad-hoc locations, preserving ranges
  [PATCH 10/10] Compress short ranges into source_location
  [PATCH] libcpp: add examples to source_location description
along with fixes for the nits identified during review.

gcc/ChangeLog:
	* Makefile.in (OBJS): Add gcc-rich-location.o.
	* diagnostic.c (diagnostic_append_note): Pass line_table to
	rich_location ctor.
	(emit_diagnostic): Likewise.
	(inform): Likewise.
	(inform_n): Likewise.
	(warning): Likewise.
	(warning_at): Likewise.
	(warning_n): Likewise.
	(pedwarn): Likewise.
	(permerror): Likewise.
	(error): Likewise.
	(error_n): Likewise.
	(error_at): Likewise.
	(sorry): Likewise.
	(fatal_error): Likewise.
	(internal_error): Likewise.
	(internal_error_no_backtrace): Likewise.
	(source_range::debug): Likewise.
	* gcc-rich-location.c: New file.
	* gcc-rich-location.h: New file.
	* genmatch.c (fatal_at): Pass line_table to rich_location ctor.
	(warning_at): Likewise.
	* gimple.h (gimple_set_block): Use set_block function.
	* input.c (dump_line_table_statistics): Dump stats on how many
	ranges were optimized vs how many needed ad-hoc table.
	(write_digit_row): Add "map" param; use its range_bits
	to calculate the per-character offset.
	(dump_location_info): Print the range and column bits for each
	ordinary map.  Use the range bits to calculate the per-character
	offset.  Pass the map as a new param to the various calls to
	write_digit_row.  Eliminate uses of
	ORDINARY_MAP_NUMBER_OF_COLUMN_BITS.
	* print-tree.c (print_node): Print any source range information.
	* rtl-error.c (diagnostic_for_asm): Likewise.
	* toplev.c (general_init): Initialize line_table's
	default_range_bits.
	* tree-cfg.c (move_block_to_fn): Likewise.
	(move_block_to_fn): Likewise.
	* tree-inline.c (copy_phis_for_bb): Likewise.
	* tree.c (tree_set_block): Likewise.
	(get_pure_location): New function.
	(set_source_range): New functions.
	(set_block): New function.
	(set_source_range): New functions.
	* tree.h (CAN_HAVE_RANGE_P): New.
	(EXPR_LOCATION_RANGE): New.
	(EXPR_HAS_RANGE): New.
	(get_expr_source_range): New inline function.
	(DECL_LOCATION_RANGE): New.
	(set_source_range): New decls.
	(get_decl_source_range): New inline function.

gcc/ada/ChangeLog:
	* gcc-interface/trans.c (Sloc_to_locus): Add line_table param when
	calling linemap_position_for_line_and_column.

gcc/c-family/ChangeLog:
	* c-common.c (c_fully_fold_internal): Capture existing souce_range,
	and store it on the result.
	* c-opts.c (c_common_init_options): Set
	global_dc->colorize_source_p.

gcc/c/ChangeLog:
	* c-decl.c (warn_defaults_to): Pass line_table to
	rich_location ctor.
	* c-errors.c (pedwarn_c99): Likewise.
	(pedwarn_c90): Likewise.
	* c-parser.c (set_c_expr_source_range): New functions.
	(c_token::get_range): New method.
	(c_token::get_finish): New method.
	(c_parser_expr_no_commas): Call set_c_expr_source_range on the ret
	based on the range from the start of the LHS to the end of the
	RHS.
	(c_parser_conditional_expression): Likewise, based on the range
	from the start of the cond.value to the end of exp2.value.
	(c_parser_binary_expression): Call set_c_expr_source_range on
	the stack values for TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR.
	(c_parser_cast_expression): Call set_c_expr_source_range on ret
	based on the cast_loc through to the end of the expr.
	(c_parser_unary_expression): Likewise, based on the
	op_loc through to the end of op.
	(c_parser_sizeof_expression) Likewise, based on the start of the
	sizeof token through to either the closing paren or the end of
	expr.
	(c_parser_postfix_expression): Likewise, using the token range,
	or from the open paren through to the close paren for
	parenthesized expressions.
	(c_parser_postfix_expression_after_primary): Likewise, for
	various kinds of expression.
	* c-tree.h (struct c_expr): Add field "src_range".
	(c_expr::get_start): New method.
	(c_expr::get_finish): New method.
	(set_c_expr_source_range): New decls.
	* c-typeck.c (parser_build_unary_op): Call set_c_expr_source_range
	on ret for prefix unary ops.
	(parser_build_binary_op): Likewise, running from the start of
	arg1.value through to the end of arg2.value.

gcc/cp/ChangeLog:
	* error.c (pedwarn_cxx98): Pass line_table to rich_location ctor.

gcc/fortran/ChangeLog:
	* error.c (gfc_warning): Pass line_table to rich_location ctor.
	(gfc_warning_now_at): Likewise.
	(gfc_warning_now): Likewise.
	(gfc_error_now): Likewise.
	(gfc_fatal_error): Likewise.
	(gfc_error): Likewise.
	(gfc_internal_error): Likewise.

gcc/testsuite/ChangeLog:
	* gcc.dg/diagnostic-token-ranges.c: New file.
	* gcc.dg/diagnostic-tree-expr-ranges-2.c: New file.
	* gcc.dg/plugin/diagnostic-test-expressions-1.c: New file.
	* gcc.dg/plugin/diagnostic-test-show-trees-1.c: New file.
	* gcc.dg/plugin/diagnostic_plugin_show_trees.c: New file.
	* gcc.dg/plugin/diagnostic_plugin_test_show_locus.c (get_loc): Add
	line_table param when calling
	linemap_position_for_line_and_column.
	(test_show_locus): Pass line_table to rich_location ctors.
	(plugin_init): Remove setting of global_dc->colorize_source_p.
	* gcc.dg/plugin/diagnostic_plugin_test_tree_expression_range.c:
	New file.
	* gcc.dg/plugin/plugin.exp (plugin_test_list): Add
	diagnostic_plugin_test_tree_expression_range.c,
	diagnostic-test-expressions-1.c, diagnostic_plugin_show_trees.c,
	and diagnostic-test-show-trees-1.c.

libcpp/ChangeLog:
	* errors.c (cpp_diagnostic): Pass pfile->line_table to
	rich_location ctor.
	(cpp_diagnostic_with_line): Likewise.
	* include/cpplib.h (struct cpp_token): Update comment for src_loc
	to indicate that the range of the token is "baked into" the
	source_location.
	* include/line-map.h (source_location): Update the descriptive
	comment to reflect the packing scheme for short ranges, adding
	worked examples of location encoding.
	(struct line_map_ordinary): Drop field "column_bits" in favor
	of field "m_column_and_range_bits"; add field "m_range_bits".
	(ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
	(location_adhoc_data): Add source_range field.
	(struct line_maps): Add fields "default_range_bits",
	"num_optimized_ranges" and "num_unoptimized_ranges".
	(get_combined_adhoc_loc): Add source_range param.
	(get_range_from_loc): New declaration.
	(pure_location_p): New prototype.
	(COMBINE_LOCATION_DATA):  Add source_range param.
	(SOURCE_LINE): Update for renaming of column_bits.
	(SOURCE_COLUMN): Likewise.  Shift the column right by the map's
	range_bits.
	(LAST_SOURCE_LINE_LOCATION): Update for renaming of column_bits.
	(linemap_position_for_line_and_column): Add line_maps * params.
	(rich_location::rich_location): Likewise.
	* lex.c (_cpp_lex_direct): Capture the range of the token, baking
	it into token->src_loc via a call to COMBINE_LOCATION_DATA.
	* line-map.c (LINE_MAP_MAX_COLUMN_NUMBER): Reduce from 1U << 17 to
	1U << 12.
	(location_adhoc_data_hash): Add the src_range into
	the hash value.
	(location_adhoc_data_eq): Require equality of the src_range
	values.
	(can_be_stored_compactly_p): New function.
	(get_combined_adhoc_loc): Add src_range param, and store it,
	via a bit-packing scheme for short ranges, otherwise within the
	lookaside table.  Remove the requirement that data is non-NULL.
	(get_range_from_adhoc_loc): New function.
	(get_range_from_loc): New function.
	(pure_location_p): New function.
	(linemap_add): Ensure that start_location has zero for the
	range_bits, unless we're past LINE_MAP_MAX_LOCATION_WITH_COLS.
	Initialize range_bits to zero.  Assert that the start_location
	is "pure".
	(linemap_line_start): Assert that the
	column_and_range_bits >= range_bits.
	Update determinination of whether we need to start a new map
	using the effective column bits, without the range bits.
	Use the set's default_range_bits in new maps, apart from
	those with column_bits == 0, which should also have 0 range_bits.
	Increase the column bits for new maps by the range bits.
	When adding lines to an existing map, use set->highest_line
	directly rather than offsetting highest by SOURCE_COLUMN.
	Add assertions to sanity-check the return value.
	(linemap_position_for_column): Offset to_column by range_bits.
	Update set->highest_location if necessary.
	(linemap_position_for_line_and_column): Add line_maps * param.
	Update the calculation to offset the column by range_bits, and
	conditionalize it on being <= LINE_MAP_MAX_LOCATION_WITH_COLS.
	Bound it by LINEMAPS_MACRO_LOWEST_LOCATION.  Update
	set->highest_location if necessary.
	(linemap_position_for_loc_and_offset): Handle ad-hoc locations;
	pass "set" to linemap_position_for_line_and_column.
	(linemap_macro_map_loc_unwind_toward_spelling): Add line_maps
	param.  Handle ad-hoc locations.
	(linemap_location_in_system_header_p): Pass on "set" to call to
	linemap_macro_map_loc_unwind_toward_spelling.
	(linemap_macro_loc_to_spelling_point): Retain ad-hoc locations.
	Pass on "set" to call to
	linemap_macro_map_loc_unwind_toward_spelling.
	(linemap_resolve_location): Retain ad-hoc locations.  Pass on
	"set" to call to linemap_macro_map_loc_unwind_toward_spelling.
	(linemap_unwind_toward_expansion):  Pass on "set" to call to
	linemap_macro_map_loc_unwind_toward_spelling.
	(linemap_expand_location): Extract the data pointer before
	extracting the location.
	(rich_location::rich_location): Add line_maps param; use it to
	extract the range from the source_location.
	* location-example.txt: Regenerate, showing new representation.

From-SVN: r230331
2015-11-13 16:29:59 +00:00
..
Foundation.framework
asan pr66314.c: Moved from here to .. 2015-08-13 16:19:56 -06:00
atomic re PR c/65345 (ICE with _Generic selection on _Atomic int) 2015-10-01 14:53:10 +00:00
autopar Handle 2 preds for fin_bb in expand_omp_for_static_chunk 2015-09-03 11:01:22 +00:00
charset Update copyright years. 2015-01-05 13:33:28 +01:00
cilk-plus Merge current set of OpenACC changes from gomp-4_0-branch. 2015-01-15 21:11:12 +01:00
compat struct-layout-1_generate.c: Simply use exit code for failure. 2015-08-28 19:52:28 +00:00
cpp Handle lines encoded into several maps in linemap_position_for_loc_and_offset 2015-09-21 14:52:09 +00:00
debug Fix for ICE with -g on testcase with incomplete types. 2015-10-28 13:02:01 -07:00
dfp Merge debug-early branch into mainline. 2015-06-05 18:44:53 +00:00
fixed-point Update copyright years. 2015-01-05 13:33:28 +01:00
format re PR c/52952 (Wformat location info is bad (wrong column number)) 2015-05-21 06:49:38 +00:00
goacc testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
goacc-gomp Merge current set of OpenACC changes from gomp-4_0-branch. 2015-01-15 21:11:12 +01:00
gomp gimplify.c (gimplify_omp_ordered): Fix up diagnostics wording. 2015-11-06 22:21:16 +01:00
graphite add testsuite automatic dg-options and dg-do action for isl-ast-gen-* and fuse-* files 2015-11-11 20:43:45 +00:00
guality [PR debug/67192] Further fix C loops' back-jump location 2015-11-09 15:35:10 +00:00
ipa loadpre2.c: Avoid undefined behavior due to uninitialized variables. 2015-11-05 08:43:46 +00:00
lto Add -fno-math-errno to gcc.dg/lto/20110201-1_0.c 2015-11-07 09:58:32 +00:00
noncompile Update copyright years. 2015-01-05 13:33:28 +01:00
pch testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
plugin Source range tracking in libcpp and C FE, with bit-packing optimization 2015-11-13 16:29:59 +00:00
simulate-thread Update copyright years. 2015-01-05 13:33:28 +01:00
special Update copyright years. 2015-01-05 13:33:28 +01:00
sso * gcc.dg/sso/*.c: Robustify dg-output directives. 2015-11-09 23:32:48 +00:00
tls [testsuite] Fix order of dg-do and dg-require-effective-target directives 2015-09-30 10:14:03 +02:00
tm re PR c/59218 (atomic transactions: accesses to volatiles not disallowed in transaction_safe code) 2015-10-02 09:44:41 -04:00
torture PR68264: Use unordered comparisons for tree-call-cdce.c 2015-11-13 14:43:38 +00:00
tree-prof stringop-2.c: Fix ifdef __mips. 2015-06-11 21:53:44 +00:00
tree-ssa [Patch] PR tree-optimization/68234 Improve range info for loop Phi node 2015-11-11 10:51:31 +00:00
tsan Update copyright years. 2015-01-05 13:33:28 +01:00
ubsan re PR middle-end/67662 (-fsanitize=undefined cries wolf for X - 1 + X when X is 2**30) 2015-09-23 14:09:48 +00:00
vect PR/67682, break SLP groups up if only some elements match 2015-11-13 16:12:52 +00:00
vmx unpack.c: Use dg-additional-options rather than dg-options. 2015-07-22 16:44:45 +00:00
vxworks Update copyright years. 2015-01-05 13:33:28 +01:00
weak re PR middle-end/67330 (ICE handling weak attributes) 2015-08-25 20:28:59 +00:00
54455.c
920413-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
940409-1.c
940510-1.c
951130-1.c
980502-1.c
980523-1.c
980526-1.c
980816-1.c
990213-1.c
990506-0.c
20000108-1.c
20000111-1.c
20000623-1.c
20000629-1.c
20000707-1.c
20000906-1.c
20000926-1.c
20001009-1.c
20001012-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20001012-2.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
20001023-1.c
20001108-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20001116-1.c
20001117-1.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
20001201-1.c
20001228-1.c
20010202-1.c
20010405-1.c
20010516-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20010622-1.c
20010822-1.c
20010912-1.c
20011008-1.c
20011008-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20011015-1.c
20011021-1.c
20011130-1.c
20011214-1.c
20020103-1.c
20020104-1.c
20020108-1.c
20020115-1.c
20020116-1.c
20020122-1.c
20020122-2.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
20020122-3.c
20020122-4.c
20020201-1.c
20020206-1.c
20020210-1.c
20020219-1.c Fix double word typos. 2015-07-13 04:46:34 +00:00
20020220-1.c
20020220-2.c
20020222-1.c
20020310-1.c XFAILs and such for ptx. 2014-11-10 16:30:33 +00:00
20020312-1.c
20020312-2.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
20020319-1.c
20020411-1.c
20020415-1.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
20020418-1.c
20020418-2.c
20020425-1.c
20020426-2.c
20020430-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20020503-1.c
20020517-1.c
20020525-1.c
20020527-1.c
20020530-1.c
20020607-1.c
20020607-2.c
20020919-1.c Fix double word typos. 2015-07-13 04:46:34 +00:00
20021006-1.c
20021014-1.c
20021018-1.c
20021023-1.c
20021029-1.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
20021029-2.c
20021116-1.c
20030107-1.c nvptx cleanup 2015-08-21 13:13:42 +00:00
20030120-1.c
20030204-1.c
20030213-1.c
20030225-1.c
20030309-1.c
20030321-1.c
20030323-1.c
20030324-1.c
20030331-2.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
20030414-1.c
20030414-2.c
20030612-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20030625-1.c
20030626-1.c
20030627-1.c
20030702-1.c nvptx cleanup 2015-08-21 13:13:42 +00:00
20030707-1.c
20030708-1.c
20030711-1.c
20030717-1.c
20030721-1.c
20030804-1.c
20030805-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20030815-1.c
20030820-1.c
20030826-1.c
20030826-2.c
20030906-1.c
20030906-2.c
20031002-1.c
20031012-1.c
20031102-1.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
20031111-1.c
20031201-1.c
20031201-2.c
20031202-1.c
20031216-1.c
20031218-1.c
20031218-2.c
20031218-3.c
20031222-1.c
20031223-1.c
20040123-1.c
20040127-1.c
20040127-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20040202-1.c
20040203-1.c
20040206-1.c
20040217-1.c
20040219-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20040223-1.c
20040305-2.c
20040306-1.c
20040309-1.c
20040310-1.c
20040311-2.c
20040322-1.c
20040331-1.c
20040409-1.c
20040609-1.c
20040622-2.c
20040625-1.c
20040627-1.c
20040813-1.c XFAILs and such for ptx. 2014-11-10 16:30:33 +00:00
20040910-1.c
20040916-1.c
20040920-1.c
20041014-1.c
20041104-1.c
20041106-1.c
20041122-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20041213-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20041219-1.c
20050105-1.c
20050105-2.c
20050111-1.c
20050111-2.c
20050121-1.c
20050121-2.c
20050209-1.c
20050307-1.c
20050309-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20050321-1.c
20050321-2.c
20050325-1.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
20050330-1.c
20050330-2.c
20050503-1.c
20050517-1.c
20050527-1.c
20050603-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20050607-1.c
20050620-1.c
20050629-1.c
20050702-1.c
20050811-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20050811-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20050826-1.c
20050922-1.c
20050922-2.c
20051201-1.c
20051207-1.c
20051207-2.c
20051207-3.c
20060410.c
20060419-1.c
20060425-1.c
20060425-2.c
20060801-1.c
20061026.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20061109-1.c
20061109-2.c
20061124-1.c
20061127-1.c
20070112-1.c
20070507-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20070725-1.c
20080615-1.c
20080820.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
20081223-1.c
20090902-1.c
20090922-1.c
20100906-1.c
20101010-1.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
20101013-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20111216-1.c
20111227-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20111227-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20141029-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20150120-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20150120-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20150120-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
20150306-1.c expmed.c (strict_volatile_bitfield_p): Check that the access will not cross a MODESIZE boundary. 2015-04-01 16:09:48 +00:00
O16384.c
PR68002.c Fix PR68002, add -fkeep-static-functions 2015-10-19 10:24:37 +00:00
README Update copyright years. 2015-01-05 13:33:28 +01:00
Waddress.c
Wall.c
Walways-true-1.c
Walways-true-2.c
Warray-bounds-2.c
Warray-bounds-3.c
Warray-bounds-4.c
Warray-bounds-5.c
Warray-bounds-6.c
Warray-bounds-7.c
Warray-bounds-8.c
Warray-bounds-9.c
Warray-bounds-10.c
Warray-bounds-11.c re PR ipa/65076 (16% tramp3d-v4.cpp compile time regression) 2015-04-22 01:32:14 +00:00
Warray-bounds-12.c re PR tree-optimization/56273 (Bogus -Warray-bounds warning) 2015-01-27 09:49:29 +00:00
Warray-bounds-13.c re PR tree-optimization/56273 (Bogus -Warray-bounds warning) 2015-01-27 09:49:29 +00:00
Warray-bounds-14.c re PR tree-optimization/64277 (Incorrect warning "array subscript is above array bounds") 2015-04-16 12:03:11 +00:00
Warray-bounds-15.c re PR tree-optimization/64277 (Incorrect warning "array subscript is above array bounds") 2015-04-16 12:03:11 +00:00
Warray-bounds-16.c re PR tree-optimization/66422 (-Warray-bounds false positive with -O3) 2015-06-08 14:53:19 +00:00
Warray-bounds.c re PR ipa/65076 (16% tramp3d-v4.cpp compile time regression) 2015-04-22 01:32:14 +00:00
Wattributes-1.c
Wattributes-2.c
Wattributes-3.c
Wbad-function-cast-1.c
Wc++-compat.c
Wc90-c99-compat-1.c
Wc90-c99-compat-2.c
Wc90-c99-compat-3.c
Wc90-c99-compat-4.c
Wc90-c99-compat-5.c
Wc90-c99-compat-6.c
Wc90-c99-compat-7.c
Wc90-c99-compat-8.c
Wc99-c11-compat-1.c
Wc99-c11-compat-2.c
Wc99-c11-compat-3.c
Wc99-c11-compat-4.c
Wc99-c11-compat-5.c
Wc99-c11-compat-6.c
Wc99-c11-compat-7.c
Wchar-subscripts-1.c
Wchar-subscripts.c
Wconversion-3.c
Wconversion-4.c
Wconversion-5.c
Wconversion-complex-c99.c re PR c/48956 (-Wconversion should warn when a complex value is assigned to a real result) 2015-05-15 18:02:50 +00:00
Wconversion-complex-gnu.c re PR c/48956 (-Wconversion should warn when a complex value is assigned to a real result) 2015-05-15 18:02:50 +00:00
Wconversion-integer-no-sign.c
Wconversion-integer.c
Wconversion-pr34389.c
Wconversion-real-integer.c
Wcxx-compat-1.c
Wcxx-compat-2.c
Wcxx-compat-3.c
Wcxx-compat-4.c
Wcxx-compat-5.c
Wcxx-compat-6.c
Wcxx-compat-7.c
Wcxx-compat-8.c
Wcxx-compat-9.c
Wcxx-compat-10.c
Wcxx-compat-11.c
Wcxx-compat-12.c
Wcxx-compat-13.c
Wcxx-compat-14.c
Wcxx-compat-15.c
Wcxx-compat-16.c
Wcxx-compat-17.c
Wcxx-compat-18.c
Wcxx-compat-19.c
Wcxx-compat-20.c
Wcxx-compat-21.c
Wcxx-compat-22.c c-decl.c (warn_cxx_compat_finish_struct): New parameters code, record_loc. 2015-06-03 15:10:44 +00:00
Wdeclaration-after-statement-1.c
Wdeclaration-after-statement-2.c
Wdeclaration-after-statement-3.c
Wdeclaration-after-statement-4.c
Wdesignated-init-2.c
Wdesignated-init.c
Wdouble-promotion.c
Wenum-compare-1.c
Werror-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-4.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-5.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-6.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-7.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-8.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-10.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-11.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-12.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Werror-13.c fdiagnostics-color=never does not disable color for some diagnostics 2015-09-24 16:37:43 +00:00
Werror-implicit-function-declaration.c
Wfatal-2.c
Wfatal.c
Wfloat-equal-1.c
Wframe-address-in-Wall.c c.opt (-Wframe-address): New warning option. 2015-08-02 17:14:18 -06:00
Wframe-address.c c.opt (-Wframe-address): New warning option. 2015-08-02 17:14:18 -06:00
Wframe-larger-than.c
Wimplicit-function-declaration-c89-default.c
Wimplicit-function-declaration-c89-pedantic.c
Wimplicit-function-declaration-c89.c
Wimplicit-function-declaration-c99-pedantic.c
Wimplicit-function-declaration-c99.c
Wimplicit-int-1.c c-opts.c (c_common_post_options): Set warn_implicit_int. 2014-10-17 18:37:25 +00:00
Wimplicit-int-2.c c-opts.c (c_common_post_options): Set warn_implicit_int. 2014-10-17 18:37:25 +00:00
Wimplicit-int-3.c c-opts.c (c_common_post_options): Set warn_implicit_int. 2014-10-17 18:37:25 +00:00
Wimplicit-int-4.c c-opts.c (c_common_post_options): Set warn_implicit_int. 2014-10-17 18:37:25 +00:00
Wincompatible-pointer-types.c
Wint-conversion.c
Wjump-misses-init-1.c
Wjump-misses-init-2.c
Wlarger-than.c
Wlarger-than2.c
Wlogical-op-1.c
Wmissing-parameter-type-Wextra.c
Wmissing-parameter-type-no.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Wmissing-parameter-type.c
Wnested-externs-1.c
Wno-all.c
Wno-c++-compat.c
Wno-frame-address.c Wno-frame-address.c: Skip on hppa*-*-*. 2015-11-07 22:22:33 +00:00
Wno-pointer-sign.c
Wobjsize-1.c
Wobjsize-1.h
Wold-style-definition-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Wold-style-definition-2.c
Woverflow-1.c
Woverflow-2.c
Woverflow-3.c
Woverlength-strings-pedantic-c89-asm.c
Woverlength-strings-pedantic-c89-ext.c
Woverlength-strings-pedantic-c89-no.c
Woverlength-strings-pedantic-c89.c
Woverlength-strings-pedantic-c90-asm.c
Woverlength-strings-pedantic-c90-ext.c
Woverlength-strings-pedantic-c90.c
Woverlength-strings-pedantic-c99-asm.c
Woverlength-strings-pedantic-c99-ext.c
Woverlength-strings-pedantic-c99-no.c
Woverlength-strings-pedantic-c99.c
Woverlength-strings.c
Woverride-init-1.c
Woverride-init-2.c
Woverride-init-3.c
Woverride-init-side-effects-1.c re PR c/64918 (invalid (?) warning when initializing structure) 2015-05-07 22:14:27 +00:00
Woverride-init-side-effects-2.c re PR c/64918 (invalid (?) warning when initializing structure) 2015-05-07 22:14:27 +00:00
Wpadded.c
Wparentheses-1.c
Wparentheses-2.c
Wparentheses-3.c
Wparentheses-4.c
Wparentheses-5.c
Wparentheses-6.c
Wparentheses-7.c
Wparentheses-8.c
Wparentheses-9.c
Wparentheses-10.c
Wparentheses-11.c
Wpointer-arith.c
Wpointer-sign-Wall-no.c
Wpointer-sign-Wall.c
Wpointer-sign-pedantic-no.c
Wpointer-sign-pedantic.c
Wpointer-sign.c
Wpointer-to-int-cast-1.c
Wpointer-to-int-cast-2.c
Wpointer-to-int-cast-3.c
Wredundant-decls-1.c
Wredundant-decls-2.c
Wreturn-local-addr.c
Wreturn-type.c
Wreturn-type2.c
Wsequence-point-pr18050.c
Wshadow-1.c
Wshadow-2.c
Wshadow-3.c
Wshadow-4.c
Wshadow-4.h
Wsign-conversion.c
Wsizeof-pointer-memaccess1.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
Wstrict-aliasing-bogus-const-ptr-nonconst-ptr.c
Wstrict-aliasing-bogus-never-dereferenced.c
Wstrict-aliasing-bogus-pta-1.c
Wstrict-aliasing-bogus-ref-all-2.c
Wstrict-aliasing-bogus-ref-all.c
Wstrict-aliasing-bogus-struct-included.c
Wstrict-aliasing-bogus-vla-1.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
Wstrict-aliasing-converted-assigned.c
Wstrict-aliasing-float-ptr-int-obj.c
Wstrict-overflow-1.c
Wstrict-overflow-2.c
Wstrict-overflow-3.c
Wstrict-overflow-4.c
Wstrict-overflow-5.c
Wstrict-overflow-6.c
Wstrict-overflow-7.c
Wstrict-overflow-8.c
Wstrict-overflow-9.c
Wstrict-overflow-10.c
Wstrict-overflow-11.c
Wstrict-overflow-12.c
Wstrict-overflow-13.c
Wstrict-overflow-14.c
Wstrict-overflow-15.c
Wstrict-overflow-16.c
Wstrict-overflow-17.c
Wstrict-overflow-18.c
Wstrict-overflow-19.c
Wstrict-overflow-20.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
Wstrict-overflow-21.c
Wstrict-overflow-22.c
Wstrict-overflow-23.c
Wstrict-overflow-24.c
Wstrict-overflow-25.c
Wstrict-overflow-26.c re PR tree-optimization/63445 (request: make -Wstrict-overflow avoid a class of false positives) 2014-10-09 08:20:53 +00:00
Wstring-literal-comparison-1.c
Wstring-literal-comparison-2.c
Wstring-literal-comparison-3.c
Wstring-literal-comparison-4.c
Wswitch-2.c
Wswitch-default.c
Wswitch-enum-2.c
Wswitch-enum-3.c
Wswitch-enum-error.c
Wswitch-enum.c
Wswitch-error.c
Wswitch.c
Wtraditional-conversion-2.c
Wtraditional-conversion.c
Wtrampolines.c
Wtype-limits-Wextra.c
Wtype-limits-no.c
Wtype-limits.c
Wunknownprag.c
Wunsuffixed-float-constants-1.c
Wunused-function.c
Wunused-label-1.c
Wunused-local-typedefs.c
Wunused-parm-1.c
Wunused-value-1.c
Wunused-value-2.c
Wunused-value-3.c
Wunused-var-1.c
Wunused-var-2.c
Wunused-var-3.c
Wwrite-strings-1.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
addr_equal-1.c re PR testsuite/64328 (addr_equal-1.c fails execution.) 2014-12-17 12:15:36 +00:00
alias-1.c
alias-2.c re PR middle-end/66110 (uint8_t memory access not optimized) 2015-05-13 10:53:42 +00:00
alias-3.c
alias-4.c
alias-5.c
alias-6.c
alias-7.c
alias-8.c Fix dg-warning in gcc.dg/alias-8.c 2015-05-30 08:36:59 -07:00
alias-9.c
alias-10.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
alias-11.c
alias-12.c
alias-13.c
alias-14.c alias.c (alias_set_entry_d): Add is_pointer and has_pointer. 2015-05-30 00:32:04 +00:00
align-1.c
align-2.c
always_inline.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
always_inline2.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
always_inline3.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
and-1.c
anon-struct-1.c
anon-struct-2.c
anon-struct-3.c
anon-struct-4.c
anon-struct-5.c
anon-struct-6.c
anon-struct-7.c
anon-struct-8.c
anon-struct-9.c
anon-struct-10.c
anon-struct-11.c
anon-struct-12.c
anon-struct-13.c
anon-struct-14.c
anon-struct-15.c
array-1.c
array-2.c
array-3.c
array-4.c
array-5.c
array-6.c
array-7.c
array-8.c re PR c/63543 (incomplete type error should suppress duplicates) 2014-10-17 18:53:35 +00:00
array-9.c
array-10.c
array-11.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
array-12.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
array-13.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
array-14.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
array-const-1.c
array-const-2.c
array-const-3.c
array-init-1.c
array-init-2.c
array-quals-1.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
array-quals-2.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
aru-2.c Add missing cleanup in gcc.dg/aru-2.c 2015-02-26 14:20:01 +00:00
asm-1.c
asm-2.c
asm-3.c
asm-4.c Fix gcc.dg/asm-4.c 2015-09-29 02:56:03 +02:00
asm-6.c
asm-7.c
asm-8.c
asm-9.c
asm-10.c re PR inline-asm/67448 (compiler crash#inline assembly#rvalue operand with constraint "m") 2015-09-07 09:19:13 +00:00
asm-a.c
asm-b.c
asm-fs-1.c
asm-names.c
asm-pr24146.c
asm-qual-1.c
asm-wide-1.c
asr_div1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
assign-warn-1.c
assign-warn-2.c
assign-warn-3.c
atomic-compare-exchange-1.c
atomic-compare-exchange-2.c
atomic-compare-exchange-3.c
atomic-compare-exchange-4.c
atomic-compare-exchange-5.c
atomic-exchange-1.c
atomic-exchange-2.c
atomic-exchange-3.c
atomic-exchange-4.c
atomic-exchange-5.c
atomic-fence.c
atomic-flag.c
atomic-generic-aux.c
atomic-generic.c
atomic-invalid.c builtins.c (expand_builtin_atomic_exchange): Remove error when memory model is CONSUME. 2015-01-14 21:30:39 +00:00
atomic-load-1.c
atomic-load-2.c
atomic-load-3.c
atomic-load-4.c
atomic-load-5.c
atomic-lockfree-aux.c
atomic-lockfree.c
atomic-noinline-aux.c match.pd (fold_widened_comparison): Apply simplifications to all integral types. 2015-10-26 17:02:48 +00:00
atomic-noinline.c match.pd (fold_widened_comparison): Apply simplifications to all integral types. 2015-10-26 17:02:48 +00:00
atomic-op-1.c
atomic-op-2.c
atomic-op-3.c
atomic-op-4.c
atomic-op-5.c
atomic-op-optimize.c [testsuite] Fix order of dg-do and dg-require-effective-target directives 2015-09-30 10:14:03 +02:00
atomic-param.c
atomic-pr51256.c
atomic-store-1.c
atomic-store-2.c
atomic-store-3.c
atomic-store-4.c
atomic-store-5.c
atomic-store-6.c
attr-alias-1.c
attr-alias-2.c
attr-alias-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
attr-alias-4.c
attr-alias-5.c
attr-alloc_align-1.c
attr-alloc_align-2.c
attr-alloc_align-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
attr-alloc_size-2.c
attr-alloc_size.c
attr-alwaysinline.c
attr-assume_aligned-1.c
attr-assume_aligned-2.c
attr-assume_aligned-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
attr-error-1.c
attr-externally-visible-1.c
attr-externally-visible-2.c
attr-hotcold-1.c
attr-ifunc-1.c
attr-ifunc-2.c
attr-ifunc-3.c
attr-ifunc-4.c
attr-ifunc-5.c
attr-invalid.c
attr-may-alias-1.c
attr-mode-1.c
attr-mode-2.c
attr-ms_struct-1.c
attr-ms_struct-2.c
attr-ms_struct-packed1.c
attr-nest.c
attr-noinline.c re PR ipa/65237 (r221040 caused many regressions) 2015-02-27 16:56:57 +00:00
attr-warn-unused-result.c
attr-weak-1.c
attr-weak-hidden-1.c
attr-weak-hidden-1a.c
attr-weakref-1-darwin.c
attr-weakref-1.c
attr-weakref-1a.c
attr-weakref-1b.c
attr-weakref-2.c
attr-weakref-3.c
attr-weakref-4.c
auto-type-1.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
auto-type-2.c
bconstp-1.c
bconstp-2.c
bconstp-3.c
bconstp-4.c
bf-ms-attrib.c
bf-ms-layout-2.c
bf-ms-layout-3.c
bf-ms-layout.c
bf-no-ms-layout.c
bf-spl1.c * gcc.dg/bf-spl1.c (main): Fix implicit int. 2014-10-21 12:55:30 +00:00
binary-constants-1.c
binary-constants-2.c
binary-constants-3.c
binary-constants-4.c
binop-notand1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand1a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand2a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand3a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand4a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand5a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notand6a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notor1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notor2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notxor1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-notxor2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-xor1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-xor2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-xor3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-xor4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
binop-xor5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
bitfld-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
bitfld-2.c
bitfld-3.c
bitfld-4.c
bitfld-5.c
bitfld-6.c
bitfld-7.c
bitfld-8.c
bitfld-9.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
bitfld-10.c
bitfld-11.c
bitfld-12.c
bitfld-13.c
bitfld-14.c
bitfld-15.c
bitfld-16.c
bitfld-17.c
bitfld-18.c
bitfld-19.c
bitfld-20.c
bitfld-21.c
boolcomplex-1.c
builtin-apply1.c Testsuite untyped assembly fixes for ptx. 2014-11-10 16:30:22 +00:00
builtin-apply2.c [AARCH64]Enable gcc/testsuite/gcc.dg/builtin-apply2.c fro aarch64 target 2015-01-16 11:04:52 +00:00
builtin-apply3.c Testsuite untyped assembly fixes for ptx. 2014-11-10 16:30:22 +00:00
builtin-apply4.c Testsuite untyped assembly fixes for ptx. 2014-11-10 16:30:22 +00:00
builtin-arith-overflow-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-arith-overflow-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-assume-aligned-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-assume-aligned-2.c
builtin-bswap-1.c
builtin-bswap-2.c
builtin-bswap-3.c
builtin-bswap-4.c
builtin-bswap-5.c
builtin-bswap-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-bswap-6a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-bswap-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-bswap-7a.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-bswap-8.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-bswap-9.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-choose-expr-2.c
builtin-choose-expr.c
builtin-complex-err-1.c
builtin-complex-err-2.c
builtin-constant_p-1.c
builtin-ffs-1.c
builtin-inf-1.c
builtin-object-size-1.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
builtin-object-size-2.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
builtin-object-size-3.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
builtin-object-size-4.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
builtin-object-size-5.c
builtin-object-size-6.c
builtin-object-size-7.c
builtin-object-size-8.c
builtin-object-size-9.c
builtin-object-size-10.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-object-size-11.c
builtin-object-size-12.c
builtin-object-size-13.c
builtin-object-size-14.c
builtin-object-size-15.c re PR tree-optimization/64715 (__builtin_object_size (..., 1) fails to locate subobject) 2015-03-26 14:19:59 +01:00
builtin-prefetch-1.c
builtin-protos-1.c
builtin-redefine.c
builtin-return-1.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
builtin-stringop-chk-1.c
builtin-stringop-chk-2.c
builtin-strncat-chk-1.c
builtin-strstr.c
builtin-unreachable-1.c
builtin-unreachable-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-unreachable-3.c
builtin-unreachable-4.c
builtin-unreachable-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtin-unreachable-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-1.c
builtins-2.c
builtins-6.c
builtins-7.c
builtins-8.c
builtins-9.c
builtins-10.c
builtins-11.c
builtins-12.c
builtins-13.c
builtins-14.c
builtins-15.c
builtins-16.c
builtins-17.c
builtins-18.c
builtins-19.c
builtins-20.c Remove undefined behaviour from builtins-20.c 2015-10-19 10:06:56 +00:00
builtins-21.c
builtins-22.c
builtins-23.c
builtins-24.c
builtins-26.c
builtins-27.c
builtins-28.c
builtins-30.c
builtins-31.c
builtins-32.c
builtins-33.c
builtins-34.c
builtins-35.c
builtins-36.c
builtins-37.c
builtins-38.c
builtins-39.c
builtins-40.c
builtins-41.c
builtins-43.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-44.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-45.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-46.c
builtins-47.c Move sqrt and cbrt simplifications to match.pd 2015-10-08 16:54:37 +00:00
builtins-48.c
builtins-49.c
builtins-50.c
builtins-51.c
builtins-52.c Move powi folds to match.pd 2015-10-27 09:31:28 +00:00
builtins-53.c
builtins-54.c
builtins-55.c
builtins-57.c Move fold_trunc_transparent_mathfn to match.pd 2015-10-23 10:01:47 +00:00
builtins-58.c builtins-58.c: Check for pow at the end of words only. 2015-02-04 12:19:17 +01:00
builtins-59.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-60.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-61.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-62.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
builtins-63.c
builtins-64.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
builtins-65.c
builtins-66.c
builtins-67.c target-supports.exp (error_h): New check. 2014-11-13 09:08:18 +00:00
builtins-85.c
builtins-config.h
builtins-error.c re PR middle-end/36757 (__builtin_signbit should be type-generic) 2015-08-18 20:07:57 +00:00
c11-align-1.c
c11-align-2.c
c11-align-3.c
c11-align-4.c
c11-align-5.c
c11-align-6.c
c11-anon-struct-1.c
c11-anon-struct-2.c
c11-anon-struct-3.c
c11-atomic-1.c
c11-atomic-2.c
c11-atomic-3.c
c11-complex-1.c
c11-float-1.c
c11-generic-1.c
c11-generic-2.c
c11-noreturn-1.c
c11-noreturn-2.c
c11-noreturn-3.c
c11-noreturn-4.c
c11-noreturn-5.c
c11-pointer-float-1.c
c11-static-assert-1.c
c11-static-assert-2.c
c11-static-assert-3.c
c11-static-assert-4.c
c11-static-assert-5.c
c11-static-assert-6.c
c11-stdatomic-1.c
c11-stdatomic-2.c
c11-thread-local-1.c
c11-thread-local-2.c
c11-true_min-1.c re PR target/58757 (Advertise the lack of denormal support on alpha without -mieee) 2015-02-09 12:53:26 +01:00
c11-typedef-1.c
c11-uni-string-1.c
c11-uni-string-2.c
c11-version-1.c
c11-version-2.c
c90-align-1.c
c90-anon-struct-1.c
c90-array-lval-1.c
c90-array-lval-2.c
c90-array-lval-3.c
c90-array-lval-4.c
c90-array-lval-5.c
c90-array-lval-6.c
c90-array-lval-7.c
c90-array-lval-8.c
c90-array-quals-2.c
c90-array-quals.c
c90-arraydecl-1.c
c90-atomic-1.c
c90-complex-1.c
c90-complit-1.c
c90-const-expr-1.c
c90-const-expr-2.c
c90-const-expr-3.c
c90-const-expr-4.c
c90-const-expr-5.c
c90-const-expr-6.c
c90-const-expr-7.c
c90-const-expr-8.c
c90-const-expr-9.c
c90-const-expr-10.c
c90-const-expr-11.c
c90-digraph-1.c
c90-dupqual-1.c
c90-enum-comma-1.c
c90-flex-array-1.c
c90-flex-array-2.c
c90-float-1.c
c90-fordecl-1.c
c90-func-1.c
c90-func-2.c
c90-func-2.h
c90-hexfloat-1.c
c90-hexfloat-2.c
c90-idem-qual-1.c
c90-idem-qual-2.c
c90-idem-qual-3.c
c90-impl-decl-1.c
c90-impl-int-1.c
c90-impl-int-2.c
c90-init-1.c
c90-intconst-1.c
c90-intprom-1.c
c90-left-shift-1.c re PR c/65179 (Introduce new C warning: -Wshift-negative-value) 2015-05-07 19:36:31 +00:00
c90-left-shift-2.c re PR c++/55095 (Wshift-overflow) 2015-07-20 13:43:45 +00:00
c90-left-shift-3.c re PR c++/55095 (Wshift-overflow) 2015-07-20 13:43:45 +00:00
c90-longlong-1.c
c90-mixdecl-1.c
c90-noreturn-1.c
c90-restrict-1.c
c90-return-1.c
c90-scope-1.c
c90-static-1.c
c90-static-assert-1.c
c90-thread-local-1.c
c90-typedef-1.c
c90-typespec-1.c
c90-vla-1.c
c94-digraph-1.c
c94-version-1.c
c99-align-1.c
c99-anon-struct-1.c
c99-array-lval-1.c
c99-array-lval-2.c
c99-array-lval-3.c
c99-array-lval-4.c
c99-array-lval-5.c
c99-array-lval-6.c
c99-array-lval-7.c
c99-array-lval-8.c
c99-array-nonobj-1.c
c99-arraydecl-1.c
c99-arraydecl-2.c
c99-arraydecl-3.c
c99-atomic-1.c
c99-bool-1.c
c99-bool-2.c
c99-bool-3.c
c99-complex-1.c
c99-complex-2.c
c99-complex-3.c
c99-complit-1.c
c99-complit-2.c
c99-condexpr-1.c
c99-const-expr-1.c
c99-const-expr-2.c
c99-const-expr-3.c
c99-const-expr-4.c
c99-const-expr-5.c
c99-const-expr-6.c
c99-const-expr-7.c re PR c/65179 (Introduce new C warning: -Wshift-negative-value) 2015-05-07 19:36:31 +00:00
c99-const-expr-8.c
c99-const-expr-9.c
c99-const-expr-10.c
c99-const-expr-11.c
c99-const-expr-12.c
c99-const-expr-13.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
c99-const-expr-14.c
c99-digraph-1.c
c99-dupqual-1.c
c99-enum-comma-1.c
c99-flex-array-1.c
c99-flex-array-2.c
c99-flex-array-3.c
c99-flex-array-5.c
c99-flex-array-6.c
c99-flex-array-7.c
c99-flex-array-typedef-1.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
c99-flex-array-typedef-2.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
c99-flex-array-typedef-3.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
c99-flex-array-typedef-5.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
c99-flex-array-typedef-7.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
c99-flex-array-typedef-8.c re PR c/64768 (internal compiler error: tree check: expected tree that contains ‘decl with RTL’ structure, have ‘field_decl’ in set_decl_rtl, at emit-rtl.c:1274) 2015-02-14 11:25:19 +00:00
c99-float-1.c
c99-fordecl-1.c
c99-fordecl-2.c
c99-fordecl-3.c
c99-func-1.c
c99-func-2.c
c99-func-3.c
c99-func-4.c
c99-hexfloat-1.c
c99-hexfloat-2.c
c99-hexfloat-3.c
c99-idem-qual-1.c
c99-idem-qual-2.c
c99-idem-qual-3.c
c99-impl-decl-1.c
c99-impl-int-1.c
c99-impl-int-2.c
c99-init-1.c
c99-init-2.c
c99-init-3.c
c99-init-4.c
c99-init-5.c
c99-init-6.c
c99-intconst-1.c
c99-intconst-2.c
c99-intprom-1.c
c99-left-shift-1.c re PR c/65179 (Introduce new C warning: -Wshift-negative-value) 2015-05-07 19:36:31 +00:00
c99-left-shift-2.c re PR c++/55095 (Wshift-overflow) 2015-07-20 13:43:45 +00:00
c99-left-shift-3.c re PR c++/55095 (Wshift-overflow) 2015-07-20 13:43:45 +00:00
c99-longlong-1.c
c99-longlong-2.c
c99-main-1.c
c99-math-double-1.c
c99-math-float-1.c
c99-math-long-double-1.c
c99-math.h
c99-mixdecl-1.c
c99-noreturn-1.c
c99-predef-1.c
c99-restrict-1.c
c99-restrict-2.c
c99-restrict-3.c
c99-restrict-4.c
c99-return-1.c
c99-scope-1.c
c99-scope-2.c
c99-static-1.c
c99-static-assert-1.c
c99-stdint-1.c
c99-stdint-2.c
c99-stdint-3.c
c99-stdint-4.c
c99-stdint-5.c
c99-stdint-6.c
c99-stdint-7.c
c99-stdint-8.c
c99-tag-1.c
c99-tag-2.c
c99-tag-3.c
c99-tgmath-1.c target-supports.exp (error_h): New check. 2014-11-13 09:08:18 +00:00
c99-tgmath-2.c target-supports.exp (error_h): New check. 2014-11-13 09:08:18 +00:00
c99-tgmath-3.c target-supports.exp (error_h): New check. 2014-11-13 09:08:18 +00:00
c99-tgmath-4.c target-supports.exp (error_h): New check. 2014-11-13 09:08:18 +00:00
c99-thread-local-1.c
c99-typedef-1.c
c99-typespec-1.c
c99-version-1.c
c99-vla-1.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
c99-vla-2.c
c99-vla-jump-1.c
c99-vla-jump-2.c
c99-vla-jump-3.c
c99-vla-jump-4.c
c99-vla-jump-5.c
call-diag-1.c
call-diag-2.c
case-bogus-1.c
case-const-1.c
case-const-2.c
case-const-3.c
cast-1.c
cast-2.c
cast-3.c
cast-4.c
cast-function-1.c
cast-lvalue-1.c
cast-lvalue-2.c
cast-pretty-print-1.c
cast-qual-1.c
cast-qual-2.c
cast-qual-3.c
cdce1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
cdce2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
char-compare.c
cleanup-1.c
cleanup-2.c
cleanup-3.c
cleanup-4.c
cleanup-5.c nvptx cleanup 2015-08-21 13:13:42 +00:00
cleanup-6.c
cleanup-7.c
cleanup-8.c
cleanup-9.c
cleanup-10.c
cleanup-11.c
cleanup-12.c nvptx cleanup 2015-08-21 13:13:42 +00:00
cleanup-13.c nvptx cleanup 2015-08-21 13:13:42 +00:00
combine-clobber.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
combine-subregs.c re PR rtl-optimization/67736 (Wrong optimization with -fexpensive-optimizations on mips64el) 2015-10-23 15:58:33 +00:00
combine_ashiftrt_1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
combine_ashiftrt_2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
comp-goto-1.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
comp-goto-2.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
comp-goto-3.c
comp-return-1.c
compare1.c
compare2.c
compare3.c
compare4.c
compare5.c
compare6.c
compare7.c
compare8.c
compare9.c
compare10.c
complete-port.c
complex-1.c
complex-2.c
complex-2.h
complex-3.c
complex-4.c
complex-5.c
compound-literal-1.c
compound-lvalue-1.c
concat.c
concat2.c
cond-constqual-1.c
cond-lvalue-1.c
const-1.c
const-elim-1.c
const-elim-2.c XFAILs and such for ptx. 2014-11-10 16:30:33 +00:00
const-float80-ped.c
const-float80.c
const-float128-ped.c
const-float128.c
const-uniq-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
constructor-1.c nvptx cleanup 2015-08-21 13:13:42 +00:00
conv-1.c
conv-2.c
conv-3.c
ctor1.c
cwsc0.c Allow the static chain to be set from C 2014-11-19 05:31:24 -08:00
cwsc1.c Allow the static chain to be set from C 2014-11-19 05:31:24 -08:00
darwin-20040809-2.c
darwin-20040812-1.c
darwin-cfstring-1.c
darwin-cfstring-2.c
darwin-cfstring-format-1.c * gcc.dg/darwin-cfstring-format-1.c: Adjust dg-error. 2014-11-15 15:27:18 +00:00
darwin-comm.c
darwin-ld-1.c
darwin-ld-2.c
darwin-ld-3.c
darwin-ld-4.c
darwin-ld-5.c
darwin-ld-20040809-1.c
darwin-ld-20040809-2.c
darwin-ld-20040828-1.c
darwin-ld-20040828-2.c
darwin-ld-20040828-3.c
darwin-minversion-1.c
darwin-minversion-2.c
darwin-minversion-3.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-4.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-5.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-6.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-7.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-8.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-9.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-10.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-11.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-minversion-12.c re PR target/63810 (gcc sets incorrect macro for OS X deployment targets) 2015-05-28 12:27:05 +00:00
darwin-sections.c
darwin-segaddr.c
darwin-version-1.c
darwin-weakimport-1.c
darwin-weakimport-2.c
darwin-weakimport-3.c
darwin-weakref-1.c
decl-1.c
decl-2.c
decl-3.c
decl-4.c
decl-5.c
decl-6.c
decl-7.c
decl-8.c
decl-9.c
decl-10.c
decl-global-ext.c
decl-nospec-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
decl-nospec-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
decl-nospec-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
declspec-1.c
declspec-2.c
declspec-3-Wextra.c
declspec-3-no.c
declspec-3.c
declspec-4.c
declspec-5.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
declspec-6.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
declspec-7.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
declspec-8.c
declspec-9.c
declspec-10.c
declspec-11.c
declspec-12.c
declspec-13.c
declspec-14.c
declspec-15.c
declspec-16.c
declspec-17.c
declspec-18.c
delay-slot-1.c
delay-slot-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
deprecated-2.c
deprecated-3.c
deprecated-4.c * tree.c (warn_deprecated_use): Show declaration with inform. 2014-11-18 08:36:38 -05:00
deprecated-5.c * tree.c (warn_deprecated_use): Show declaration with inform. 2014-11-18 08:36:38 -05:00
deprecated-6.c * tree.c (warn_deprecated_use): Show declaration with inform. 2014-11-18 08:36:38 -05:00
deprecated.c
dg.exp Update copyright years. 2015-01-05 13:33:28 +01:00
di-longlong64-sync-1.c
di-sync-multithread.c
diag-aka-1.c c-objc-common.c (c_tree_printer): For a typedef name, print the stripped version as well, if they're not the same. 2014-10-30 17:22:12 +00:00
diagnostic-token-ranges.c Source range tracking in libcpp and C FE, with bit-packing optimization 2015-11-13 16:29:59 +00:00
diagnostic-tree-expr-ranges-2.c Source range tracking in libcpp and C FE, with bit-packing optimization 2015-11-13 16:29:59 +00:00
div-compare-1.c
div-double-1.c
divbyzero.c
dll-1.c
dll-2.c
dll-3.c
dll-4.c
dll-5.c
dll-6.c
dll-6a.c
dll-7.c
dll-7a.c
dll-8.c
dll-9.c
dll-9a.c
dll-10.c
dll-10a.c
dll-11.c
dll-11a.c
dll-12.c
dll-12a.c
do-empty.c
dollar.c Fix column location in c_lex_with_flags errors 2015-08-22 12:44:51 +00:00
doloop-2.c
dremf-type-compat-1.c
dremf-type-compat-2.c
dremf-type-compat-3.c
dremf-type-compat-4.c
dse.c Dump only required dse1 file 2015-10-08 09:03:51 +00:00
duff-1.c
duff-2.c
duff-3.c
duff-4.c
dump-ada-spec-1.c
dump-pass.c
dx-test.c function.c (free_after_compilation): Clear PROP_cfg in f->curr_properties. 2015-07-07 11:19:27 +00:00
empty-source-1.c
empty-source-2.c
empty-source-3.c
empty1.c
empty2.c
enum-compat-1.c
enum-const-1.c
enum-const-2.c
enum-const-3.c
enum-incomplete-1.c
enum-incomplete-2.c re PR c/52085 (incomplete enum not completed correctly if packed was used) 2015-04-25 10:12:01 +00:00
enum-mode-1.c re PR c/52085 (incomplete enum not completed correctly if packed was used) 2015-04-25 10:12:01 +00:00
enum1.c
enum2.c
enum3.c
errno-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
ext-elim-1.c
extra-semi-1.c
extra-semi-2.c
extra-semi-3.c
fail_always_inline.c
fail_always_inline2.c
falign-labels-1.c
fastmath-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
fdata-sections-1.c
fdata-sections-2.c re PR middle-end/192 (String literals don't obey -fdata-sections) 2015-05-07 17:51:01 +02:00
fixuns-trunc-1.c
float-exact-1.c
float-range-1.c
float-range-2.c
float-range-3.c
float-range-4.c
float-range-5.c
fltconst-1.c
fltconst-2.c
fltconst-double-pedantic-1.c
fltconst-double-pedantic-2.c
fltconst-pedantic-dfp.c
fnegate-1.c
fold-abs-1.c
fold-abs-2.c
fold-abs-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-abs-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-abs-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-addr-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-alloca-1.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
fold-and-1.c match.pd ((x | y) & ~(x & y) -> x ^ y, (x | y) & (~x ^ y) -> x & y): New patterns. 2015-06-26 10:13:49 +00:00
fold-and-2.c match.pd ((x | y) & ~(x & y) -> x ^ y, (x | y) & (~x ^ y) -> x & y): New patterns. 2015-06-26 10:13:49 +00:00
fold-andxor-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-bitand-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-bitand-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-bitand-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-bitand-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-compare-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-compare-2.c tree-ssa-sccvn.c (vn_nary_op_compute_hash): Also canonicalize comparison operand order and commutative ternary op operand order. 2015-08-12 14:27:40 +00:00
fold-compare-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-compare-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-compare-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-compare-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-compare-7.c
fold-compare-8.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-complex-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-cond-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-convnotconv-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-convround-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-cstring.c
fold-cstvecshift.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-cvect.c
fold-div-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-div-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-div-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqand-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqandnot-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqandshift-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqandshift-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqandshift-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqcmplx-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqxor-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqxor-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqxor-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-eqxor-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-even-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-ior-1.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-ior-2.c * gcc.dg/fold-ior-2.c (fn4): Swap operands. 2015-06-30 11:05:13 +00:00
fold-ior-3.c match.pd (~x | x): Don't use tree_nop_conversion_p. 2015-06-30 16:36:44 +00:00
fold-minus-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-minus-2.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-minus-3.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-minus-4.c match.pd ((x + y) - (x | y) -> x & y, (x + y) - (x & y) -> x | y): New patterns. 2015-06-23 10:09:05 +00:00
fold-minus-5.c match.pd ((x + y) - (x | y) -> x & y, (x + y) - (x & y) -> x | y): New patterns. 2015-06-23 10:09:05 +00:00
fold-minus-6.c re PR tree-optimization/67953 (match.pd: X - (X / Y) * Y wrong on change of sign) 2015-10-15 09:39:35 +00:00
fold-minus-7.c fold-const.c (fold_binary_loc): Move A - (A & B) into ~B & A ... 2015-07-17 16:03:27 +00:00
fold-mod-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-modpow2.c re PR tree-optimization/66423 (a % (1 << b) no longer gets folded to a & (1 << b) for unsigned a) 2015-06-09 12:31:43 +00:00
fold-mulconj-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-nonneg-1.c
fold-notunord.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-overflow-1.c
fold-perm.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-plus-1.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-plus-2.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-plusmult-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-plusmult.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-plusnot-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-reassoc-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-reassoc-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-reassoc-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-rotate-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-sub.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-xor-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-xor-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-xor-3.c match.pd ((x & y) ^ (x | y) -> x ^ y): New pattern. 2015-06-11 12:37:37 +00:00
fold-xor-4.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-xor-5.c match.pd ((x ^ y) ^ (x | y) -> x & y, (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y, (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y, (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns. 2015-06-22 14:46:14 +00:00
fold-xorand-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
fold-xornot-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
foo.specs
for-1.c
fork-instrumentation.c nvptx cleanup 2015-08-21 13:13:42 +00:00
framework-1.c
framework-2.c
free-1.c
free-2.c
fshort-wchar.c fshort-wchar.c: Use arm_eabi instead of arm*-*-*eabi*. 2014-11-10 19:32:45 +01:00
fstack-protector-strong.c safe-3.c: Add bind_pic_locally. 2014-11-18 10:53:13 +00:00
ftrapv-1.c
ftrapv-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
ftrapv-3.c
func-args-1.c
func-args-2.c
func-outside-1.c
func-outside-2.c
func-ptr-conv-1.c
funcdef-attr-1.c
funcdef-storage-1.c
funcdef-var-1.c
funcdef-var-2.c
funcorder.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
funroll-loops-all.c
fuse-caller-save.c Rename fuse-caller-save 2014-12-03 10:28:25 +00:00
fwrapv-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
fwrapv-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
gcc-have-sync-compare-and-swap.c
globalalias-2.c
globalalias.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
gnu-cond-expr-1.c
gnu-cond-expr-2.c
gnu-cond-expr-3.c
gnu-predef-1.c
gnu11-version-1.c
gnu89-const-expr-1.c
gnu89-const-expr-2.c
gnu89-dupqual-1.c
gnu89-init-1.c
gnu89-init-2.c
gnu89-init-3.c
gnu89-init-4.c
gnu90-const-expr-1.c
gnu99-const-expr-1.c
gnu99-const-expr-2.c
gnu99-const-expr-3.c
gnu99-const-expr-4.c
gnu99-init-1.c
gnu99-init-2.c
gnu99-static-1.c
h8300-bit-insn-ice.c
h8300-bit-insn-ice2.c
h8300-bss-align-1.c
h8300-div-delay-slot.c
h8300-ice2.c
h8300-stack-1.c
hex-round-1.c
hex-round-2.c
hoist-register-pressure-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
hoist-register-pressure-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
hoist-register-pressure-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
ia64-sync-1.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
ia64-sync-2.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
ia64-sync-3.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
ia64-sync-4.c
iec-559-macros-1.c
iec-559-macros-2.c
iec-559-macros-3.c
iec-559-macros-4.c
iec-559-macros-5.c
iec-559-macros-6.c
iec-559-macros-7.c
iec-559-macros-8.c
iec-559-macros-9.c
if-empty-1.c
ifcvt-1.c [RTL-ifcvt] Make non-conditional execution if-conversion more aggressive 2015-09-01 12:33:51 +00:00
ifcvt-2.c [RTL-ifcvt] Make non-conditional execution if-conversion more aggressive 2015-09-01 12:33:51 +00:00
ifcvt-3.c [RTL-ifcvt] Make non-conditional execution if-conversion more aggressive 2015-09-01 12:33:51 +00:00
ifcvt-4.c [Patch ifcvt] Teach RTL ifcvt to handle multiple simple set instructions 2015-11-05 18:11:12 +00:00
ifcvt-fabs-1.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
ifelse-1.c
ifelse-2.c
iftrap-1.c pr41616-1.c: Use -fgnu89-inline. 2014-10-07 17:32:23 +00:00
iftrap-2.c
imag-1.c
incomplete-typedef-1.c c-typeck.c (c_incomplete_type_error): Refactor to use %qT. 2015-04-30 09:35:05 +00:00
init-bad-1.c
init-bad-2.c
init-bad-3.c
init-bad-4.c
init-bad-5.c
init-bad-6.c
init-bad-7.c
init-bad-8.c c-typeck.c (set_init_label): Call error_at instead of error and pass LOC to it. 2015-04-30 09:28:48 +00:00
init-desig-obs-1.c
init-desig-obs-2.c
init-desig-obs-3.c
init-empty-1.c
init-empty-2.c
init-empty-3.c
init-excess-1.c
init-string-1.c
init-string-2.c
init-undef-1.c
initpri1.c
initpri2.c
initpri3.c
inline-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
inline-2.c
inline-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
inline-4.c
inline-5.c
inline-6.c
inline-7.c
inline-8.c
inline-9.c
inline-10.c
inline-11.c
inline-12.c
inline-13.c
inline-14.c
inline-15.c
inline-16.c
inline-17.c
inline-18.c
inline-19.c
inline-20.c
inline-21.c
inline-22.c
inline-23.c
inline-24.c
inline-25.c
inline-26.c
inline-27.c
inline-28.c
inline-29.c
inline-30.c
inline-31.c
inline-32.c
inline-32a.c
inline-33.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
inline-34.c
inline-35.c
inline-36.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
inline-37.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
inline-38.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
inline-39.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
inline1.c
inline2.c
inline3.c
inline4.c
inline5.c
inline6.c
inline7.c
instrument-1.c
instrument-2.c
instrument-3.c
intermod-1.c
intmax_t-1.c
invalid-call-1.c
ira-loop-pressure.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
ira-shrinkwrap-prep-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
ira-shrinkwrap-prep-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
ivdep.c
kpice1.c
label-compound-stmt-1.c
label-decl-1.c
label-decl-2.c
label-decl-3.c
label-decl-4.c
large-size-array-2.c
large-size-array-3.c
large-size-array-4.c
large-size-array-5.c
large-size-array-6.c
large-size-array.c
lazy-ptr-test.c
local1.c
localalias-2.c
localalias.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
long-long-compare-1.c
long-long-cst1.c
long-long-typespec-1.c
long_branch.c [AArch64] Improve bit-test-branch pattern to avoid unnecessary register clobber 2015-01-27 15:20:14 +00:00
loop-1.c
loop-2.c
loop-3.c
loop-4.c
loop-5.c
loop-6.c
loop-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
loop-8.c type-generic-1.c: Pass -DUNSAFE for Visium. 2015-09-13 17:18:50 +00:00
loop-9.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
loop-invariant.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
loop-unswitch-1.c
loop-unswitch-2.c tree-ssa-loop-unswitch.c: Include "gimple-iterator.h" and "cfghooks.h"... 2015-10-08 13:14:09 +00:00
loop-unswitch-3.c tree-ssa-loop-unswitch.c: Include "gimple-iterator.h" and "cfghooks.h"... 2015-10-08 13:14:09 +00:00
loop-unswitch-4.c tree-ssa-loop-unswitch.c: Include "gimple-iterator.h" and "cfghooks.h"... 2015-10-08 13:14:09 +00:00
lower-subreg-1.c re PR target/65105 ([i386] XMM registers are not used for 64bit computations on 32bit target) 2015-09-29 09:32:40 +00:00
lvalue-2.c
lvalue-3.c
lvalue-4.c
lvalue-5.c
lvalue-6.c
lvalue-7.c
lvalue-8.c re PR c/66341 (Some casts wrongly produce a lvalue) 2015-06-04 08:17:45 +00:00
lvalue1.c
m-un-1.c
m-un-2.c
macro-1.c
macro-fusion-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
macro-fusion-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
mallign.c
march-generic.c gen-attrs-42.C: Add x86_64-*-* target. 2014-11-02 22:32:54 +01:00
march.c
max-1.c
memcpy-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memcpy-2.c
memcpy-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memcpy-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memcpy-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memmove-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memmove-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memmove-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memmove-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
memset-1.c
memset-2.c [Patch] PR target/63937 TARGET_USE_BY_PIECES_INFRASTRUCTURE_P should take an unsigned HOST_WIDE_INT size argument 2014-11-18 22:45:21 +00:00
merge-all-constants-1.c
minmax-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
misaligned-expand-1.c
misaligned-expand-2.c
misaligned-expand-3.c
misc-column.c
mismatch-decl-1.c
missing-field-init-1.c
missing-field-init-2.c
mmix-1.c
modmod.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
mtune.c
multiple-overflow-warn-1.c
multiple-overflow-warn-2.c
multiple-overflow-warn-3.c
multiword-1.c
nand.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
nest.c
nested-calls-1.c
nested-func-1.c
nested-func-2.c
nested-func-3.c
nested-func-4.c
nested-func-5.c
nested-func-6.c
nested-func-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
nested-func-8.c
nested-redef-1.c
no-asm-1.c
no-asm-2.c
no-asm-3.c
no-asm-4.c
no-math-errno-1.c Predefine __NO_MATH_ERRNO__ for -fno-math-errno. 2014-11-12 13:33:45 +00:00
no-math-errno-2.c Predefine __NO_MATH_ERRNO__ for -fno-math-errno. 2014-11-12 13:33:45 +00:00
no-math-errno-3.c Predefine __NO_MATH_ERRNO__ for -fno-math-errno. 2014-11-12 13:33:45 +00:00
no-math-errno-4.c Predefine __NO_MATH_ERRNO__ for -fno-math-errno. 2014-11-12 13:33:45 +00:00
no-strict-overflow-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
no-strict-overflow-8.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
nodfp-1.c
nofixed-point-1.c
nofixed-point-2.c
non-local-goto-1.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
non-local-goto-2.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
nonnull-1.c
nonnull-2.c
nonnull-3.c
nop.h
noreorder.c
noreorder2.c
noreorder3.c
noreorder4.c
noreturn-1.c
noreturn-2.c
noreturn-3.c
noreturn-4.c
noreturn-5.c
noreturn-6.c
noreturn-7.c re PR ipa/65237 (r221040 caused many regressions) 2015-02-27 16:56:57 +00:00
noreturn-8.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
nrv1.c
nrv2.c
nrv3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
nrv4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
nrv5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
null-pointer-1.c
old-style-asm-1.c
old-style-param-1.c
old-style-prom-1.c
old-style-prom-2.c
old-style-prom-3.c
old-style-then-proto-1.c
optimize-bswapdi-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
optimize-bswapdi-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
optimize-bswapdi-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
optimize-bswaphi-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
optimize-bswapsi-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
optimize-bswapsi-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
optimize-bswapsi-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
opts-1.c
opts-2.c
opts-3.c
opts-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
opts-5.c
opts-6.c
ordered-comparison-1.c
ordered-comparison-2.c
ordered-comparison-3.c
ordered-comparison-4.c
out-of-bounds-1.c
overflow-1.c
overflow-2.c
overflow-warn-1.c
overflow-warn-2.c
overflow-warn-3.c
overflow-warn-4.c
overflow-warn-5.c
overflow-warn-6.c
overflow-warn-7.c
overflow-warn-8.c
pack-test-1.c
pack-test-1.h
pack-test-2.c
pack-test-3.c
pack-test-4.c
pack-test-5.c
packed-array.c
packed-vla.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
parloops-exit-first-loop-alt-2.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt-3.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt-4.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt-5.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt-6.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt-7.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt-pr66652.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parloops-exit-first-loop-alt.c Add transform_to_exit_first_loop_alt dump success message 2015-07-24 15:00:59 +00:00
parm-forwdecl-1.c
parm-forwdecl-2.c
parm-forwdecl-3.c
parm-forwdecl-4.c
parm-impl-decl-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
parm-impl-decl-2.c
parm-impl-decl-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
parm-incomplete-1.c c-decl.c (get_parm_info): Remove static var. 2015-07-27 22:26:34 +00:00
parm-mismatch-1.c
parse-decl-after-if.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
parse-decl-after-label.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
parse-else-error-2.c
parse-else-error-3.c
parse-else-error-4.c
parse-else-error.c
parse-error-1.c
parse-error-2.c
parse-error-3.c
parser-pr28152-2.c
parser-pr28152.c
pedwarn-init.c
pg-override.c
pg.c
pic-macro-define.c
pie-link.c Link gcc.dg/pie-link.c with -pie 2015-09-11 11:10:03 +00:00
pointer-arith-1.c
pointer-arith-2.c
pointer-arith-3.c
pointer-arith-4.c
pointer-arith-5.c
pointer-arith-6.c
pointer-arith-7.c
pointer-arith-8.c
pointer-arith-9.c
pointer-arith-10.c * c-common.c (pointer_int_sum): Fold the MULT_EXPR. 2015-10-28 14:54:48 -04:00
pointer-array-atomic.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
pointer-array-quals-1.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
pointer-array-quals-2.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
postincr-1.c
pow-sqrt-1.c [tree-ssa-math-opts] Expand pow (x, CONST) using square roots when possible 2015-05-13 15:26:14 +00:00
pow-sqrt-2.c [tree-ssa-math-opts] Expand pow (x, CONST) using square roots when possible 2015-05-13 15:26:14 +00:00
pow-sqrt-3.c [tree-ssa-math-opts] Expand pow (x, CONST) using square roots when possible 2015-05-13 15:26:14 +00:00
pow-sqrt-synth-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pow-sqrt.x [tree-ssa-math-opts] Expand pow (x, CONST) using square roots when possible 2015-05-13 15:26:14 +00:00
pr3074-1.c
pr8715.c
pr8788-1.c
pr8835-1.c
pr8927-1.c
pr9365-1.c
pr9814-1.c
pr10392-1.c
pr10474.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr11459-1.c
pr11492.c
pr11864-1.c
pr12603.c
pr12625-1.c
pr13519-1.c
pr13804-1.c c-objc-common.c (c_tree_printer): For a typedef name, print the stripped version as well, if they're not the same. 2014-10-30 17:22:12 +00:00
pr14092-1.c
pr14475.c
pr14649-1.c re PR c/66066 (r222889 causes bogus error: initializer element is not constant) 2015-05-14 11:42:53 +00:00
pr14765-1.c
pr14796-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr14796-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr14963.c
pr15236.c
pr15347.c re PR tree-optimization/64715 (__builtin_object_size (..., 1) fails to locate subobject) 2015-03-20 12:39:32 +00:00
pr15360-1.c
pr15443-1.c
pr15443-2.c
pr15649-1.c
pr15698-1.c
pr15698-2.c
pr15698-3.c
pr15698-4.c
pr15698-5.c
pr15698-6.c
pr15698-7.c
pr15698-8.c
pr15749-1.c
pr15749-1.h
pr15784-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr15784-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr15784-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr15784-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr15785-1.c
pr15825-1.c
pr16107.c re PR tree-optimization/16107 (missed optimization with some math function builtins) 2015-08-17 04:47:45 +00:00
pr16194.c
pr16302.c
pr16973.c
pr17024-1.c
pr17036-1.c
pr17055-1.c
pr17112-1.c
pr17188-1.c
pr17301-1.c
pr17301-2.c
pr17319.c
pr17322.c
pr17424-1.c
pr17581-1.c
pr17635.c
pr17730-1.c
pr17844-1.c
pr17957.c
pr18079-2.c
pr18079.c
pr18164.c
pr18241-1.c
pr18241-2.c
pr18241-3.c
pr18241-4.c
pr18241-5.c
pr18479.c
pr18501.c
pr18502-1.c
pr18520-1.c
pr18596-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr18596-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr18596-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr18628.c
pr18725.c
pr18809-1.c c-decl.c (get_parm_info): Remove static var. 2015-07-27 22:26:34 +00:00
pr18921-1.c
pr18928-1.c
pr18963-1.c
pr19105.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr19340.c
pr19345.c
pr19402-1.c
pr19402-2.c
pr19633-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr19633.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr19967.c
pr19984.c re PR c/66066 (r222889 causes bogus error: initializer element is not constant) 2015-05-14 11:42:53 +00:00
pr19988.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20017.c
pr20054.c
pr20100.c
pr20115-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20115.c
pr20126.c
pr20130-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20216.c
pr20245-1.c
pr20368-1.c
pr20368-2.c
pr20368-3.c
pr20672-1.c
pr20922-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20922-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20922-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20922-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20922-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr20922-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr21032.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr21041.c
pr21085.c
pr21282.c
pr21419.c
pr21643.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr21709-1.c
pr21858.c
pr21921.c
pr22231.c
pr22308-1.c
pr22311-1.c
pr22329.c
pr22335-1.c
pr22335-2.c
pr22356-1.c
pr22458-1.c
pr23049.c
pr23075.c
pr23165.c
pr23200.c
pr23295.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr23408.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr23470-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr23518.c
pr23547.c
pr23584.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr23623.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr23818.c
pr23911.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr24101-1.i
pr24101-2.i
pr24225.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr24367.c
pr24445.c
pr24561.c
pr24600.c
pr24615.c
pr24620.c
pr24683.c
pr24820.c
pr25023.c
pr25376.c
pr25529.c re PR middle-end/25529 ((unsigned * 2)/2 is not changed into unsigned &0x7FFFFFFF) 2015-07-24 04:47:48 +00:00
pr25530.c re PR middle-end/25530 ((unsigned / 2)*2 is not changed into unsigned &~1) 2015-07-24 04:50:41 +00:00
pr25559.c
pr25682.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr25795-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr25795.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr25801.c
pr25805.c
pr26004.c
pr26427.c
pr26570.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr26632.c
pr26717.c
pr26719.c
pr26729-1.c
pr26865.c
pr26961-1.c
pr26983.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr27003.c
pr27095.c
pr27132.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr27150-1.c
pr27301.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr27314.c
pr27331.c
pr27335.c
pr27363.c
pr27382-1.c
pr27382-2.c
pr27428-1.c
pr27528.c
pr27531-1.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr27639.c
pr27671-2.c
pr27758.c
pr27802-1.c
pr27861-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr27953.c c-decl.c (get_parm_info): Remove static var. 2015-07-27 22:26:34 +00:00
pr27959-2.c
pr27959.c
pr28121.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr28162.c
pr28187.c
pr28243.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr28322-2.c
pr28322-3.c
pr28322.c
pr28402.c
pr28419.c
pr28574.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr28685-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr28726.c
pr28755.c XFAILs and such for ptx. 2014-11-10 16:30:33 +00:00
pr28796-1.c
pr28796-2.c
pr28888.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr28911.c
pr28935.c
pr29091.c
pr29215.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr29254.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr29299.c
pr29467.c
pr29521-2.c
pr29521.c
pr29637.c
pr29683.c
pr29736.c
pr29801.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr29921-2.c
pr29921.c
pr30045.c
pr30137-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr30137-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr30172-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr30189.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr30260.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr30286.c
pr30360.c
pr30457.c
pr30473.c
pr30551-2.c
pr30551-3.c
pr30551-4.c
pr30551-5.c
pr30551-6.c
pr30551.c
pr30643.c
pr30744-1.c
pr30762-1.c
pr30762-2.c
pr30904.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr30949.c
pr30951.c
pr30957-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr31127.c
pr31490-2.c
pr31490-3.c
pr31490-4.c
pr31490.c
pr31507-1.c Testsuite alloca fixes for ptx. 2014-11-10 16:30:09 +00:00
pr31507-2.c
pr31529-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr31529-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr31847.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr31866.c
pr31959.c
pr32041.c
pr32061.c
pr32069.c
pr32135.c
pr32176.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
pr32207.c
pr32293.c
pr32328.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr32338-1.c
pr32338-2.c
pr32370.c
pr32374.c
pr32450.c
pr32559.c
pr32573.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr32721.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr32773.c
pr32912-1.c
pr32912-2.c
pr32912-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr32975.c
pr33007.c
pr33017.c
pr33092.c
pr33136-1.c
pr33136-2.c
pr33136-3.c
pr33238.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr33434-1.c
pr33434-2.c
pr33434-3.c
pr33434-4.c
pr33619.c
pr33644.c
pr33645-1.c
pr33645-2.c
pr33648.c
pr33653.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr33666.c
pr33667.c
pr33670.c
pr33673.c
pr33676.c
pr33691.c
pr33692.c
pr33693.c
pr33694.c
pr33695.c
pr33696.c
pr33697.c
pr33724.c
pr33726.c
pr33742.c
pr33826.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr33919-0.h
pr33919-1.h
pr33919-2.h
pr33919.c
pr33923.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr33961.c
pr34003-1.c
pr34003-2.c
pr34027-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr34027-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr34088.c
pr34171.c
pr34225.c
pr34233.c
pr34263.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr34351.c
pr34457-1.c
pr34457-2.c
pr34668-1.c
pr34668-2.c
pr34825.c
pr34856.c
pr34965.c
pr34969.c
pr34985.c
pr35045.c
pr35065.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr35258.c
pr35264.c
pr35334.c
pr35430.c
pr35440.c
pr35442.c
pr35443.c
pr35445.c
pr35468.c
pr35616.c
pr35635.c
pr35701.c
pr35729.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr35736.c
pr35742.c
pr35746.c
pr35899.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr36015.c
pr36017.c
pr36111.c
pr36194.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr36224.c
pr36227.c
pr36300-1.c
pr36300-2.c
pr36489.c
pr36504.c devirt-28a.C: Require LTO effective target. 2015-04-30 22:22:51 +02:00
pr36508.c
pr36584.c
pr36774-1.c
pr36774-2.c
pr36901-1.c
pr36901-2.c
pr36901-3.c
pr36901-4.c
pr36901-system.h
pr36901.h
pr36902.c
pr36991.c
pr36997.c
pr36998.c
pr37106-1.c
pr37106-2.c
pr37156.c
pr37171.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr37186.c
pr37217.c
pr37261.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr37289.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr37303.c
pr37353.c
pr37360.c
pr37438.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr37529.c
pr37544.c
pr37561.c
pr37645.c
pr37663.c
pr37772.c
pr37858.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr37879.c
pr37908.c
pr37985.c
pr38140.c
pr38200.c
pr38245-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr38245-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr38245-3.c
pr38245-3.h
pr38245-4.c
pr38338.c Testsuite untyped assembly fixes for ptx. 2014-11-10 16:30:22 +00:00
pr38364.c
pr38615.c
pr38616.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr38645.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr38700.c
pr38902.c
pr38932.c
pr38934.c
pr38957.c
pr38984.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr39084.c
pr39226.c
pr39323-1.c
pr39323-2.c
pr39323-3.c
pr39343.c
pr39443.c
pr39453.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr39455.c devirt-28a.C: Require LTO effective target. 2015-04-30 22:22:51 +02:00
pr39464.c
pr39565.c
pr39666-1.c
pr39666-2.c
pr39712.c
pr39794.c
pr39867.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr39874.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr40031.c
pr40172-1.c
pr40172-2.c
pr40172-3.c
pr40209.c
pr40340-1.c
pr40340-2.c
pr40340-3.c
pr40340-4.c
pr40340-5.c
pr40340.h
pr40501.c re PR c++/55095 (Wshift-overflow) 2015-07-20 13:43:45 +00:00
pr40550.c
pr40669.c
pr40792.c
pr40861.c
pr40946.c
pr40971.c
pr40989.c
pr41033.c
pr41123.c
pr41232.c
pr41241.c
pr41248.c
pr41295.c
pr41340.c
pr41345.c
pr41454.c
pr41470.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr41488.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr41551.c
pr41573.c
pr41574.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr41619.c
pr41643.c
pr41762.c
pr41783.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr41837.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr41841.c
pr41842.c
pr41935.c
pr41963.c
pr42078.c
pr42084.c
pr42215.c
pr42245-2.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr42245.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr42246.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr42249.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr42250.c
pr42388.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr42389.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr42396.c
pr42427.c
pr42461.c
pr42475.c
pr42611.c
pr42629.c * gcc.dg/pr42629.c: Only pass scheduling options on scheduling targets. 2015-01-05 01:08:40 +00:00
pr42630.c
pr42631.c
pr42662.c
pr42685.c
pr42715.c
pr42719.c
pr42728.c
pr42889.c
pr42916.c
pr42918.c
pr42963.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr43058.c
pr43082.c
pr43084.c
pr43139.c
pr43157.c
pr43211.c
pr43213.c
pr43245.c
pr43280.c
pr43299.c
pr43300.c
pr43305.c
pr43317.c
pr43379.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr43402.c
pr43419.c
pr43513.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr43557-1.c
pr43557-2.c
pr43562.c
pr43564.c
pr43643.c
pr43670.c
pr43730.c
pr43864-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr43864-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr43864-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr43864.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr43971.c
pr44012.c
pr44023.c
pr44024.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44028.c
pr44061.c
pr44136.c
pr44194-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44194-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44214-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44214-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44214-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44290-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44290-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr44337.c
pr44393.c
pr44404.c
pr44485.c
pr44509.c
pr44539.c
pr44545.c
pr44606.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr44674.c
pr44699.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr44838.c
pr44964.c
pr44971.c
pr44974.c
pr45055.c
pr45071.c
pr45079.c
pr45083.c
pr45101.c
pr45105.c
pr45107.c
pr45259.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr45352-1.c devirt-28a.C: Require LTO effective target. 2015-04-30 22:22:51 +02:00
pr45352-2.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr45352-3.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr45352.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr45353.c
pr45415.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr45416.c
pr45449.c
pr45461.c
pr45472.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr45506.c
pr45567.c
pr45570.c
pr45652.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr45733.c
pr45750.c
pr45819.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr45865.c
pr45991.c
pr46088.c
pr46130-1.c
pr46130-2.c
pr46165.c
pr46171.c
pr46177-2.c
pr46177.c
pr46184.c
pr46212.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr46217.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr46233.c
pr46251.c
pr46252.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr46255.c
pr46288.c
pr46307.c
pr46309-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr46309.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr46315.c
pr46355.c
pr46375.c
pr46387.c
pr46440.c
pr46494.c
pr46499-1.c
pr46499-2.c
pr46521.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr46522.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr46571.c
pr46585.c
pr46614.c
pr46620.c
pr46647.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr46674.c
pr46675.c
pr46685.c
pr46728-6.c builtins-58.c: Check for pow at the end of words only. 2015-02-04 12:19:17 +01:00
pr46728-9.c
pr46728-12.c
pr46771.c
pr46777.c
pr46867.c
pr46875.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr46878-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr46893.c
pr46909.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr47028.c
pr47086.c
pr47201.c
pr47276.c safe-3.c: Add bind_pic_locally. 2014-11-18 10:53:13 +00:00
pr47369-1.c
pr47372-1.c
pr47372-2.c
pr47381-1.c
pr47381-2.c
pr47383.c
pr47391.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr47443.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr47446-1.c
pr47446-2.c
pr47555.c
pr47610.c
pr47684.c
pr47727.c
pr47763.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr47766.c
pr47793.c
pr47881.c
pr47893.c
pr47899.c
pr47917.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr47991.c
pr48022-1.c
pr48022-2.c
pr48062.c
pr48067.c
pr48134.c
pr48141.c
pr48144.c
pr48156.c
pr48159-1.c
pr48159-2.c
pr48186.c
pr48189.c
pr48203.c
pr48213.c
pr48235.c
pr48335-1.c
pr48335-2.c
pr48335-3.c
pr48335-4.c
pr48335-5.c
pr48335-6.c
pr48335-7.c
pr48335-8.c
pr48374.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr48442.c
pr48524.c
pr48524.spec
pr48552-1.c re PR c/63543 (incomplete type error should suppress duplicates) 2014-10-17 18:53:35 +00:00
pr48552-2.c re PR c/63543 (incomplete type error should suppress duplicates) 2014-10-17 18:53:35 +00:00
pr48616.c
pr48685.c
pr48739-1.c
pr48739-2.c
pr48768.c
pr48770.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr48774.c
pr48784-1.c
pr48784-2.c
pr48826.c
pr48837.c
pr48975.c
pr49000.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr49069.c
pr49120.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr49235.c
pr49243.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
pr49307.c
pr49496.c
pr49544.c
pr49551.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr49602.c
pr49619.c
pr49696.c
pr49705.c
pr49799.c
pr49860.c
pr49948.c
pr49994-1.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr49994-2.c
pr49994-3.c
pr50017.c
pr50078.c
pr50132.c
pr50133.c
pr50161.c
pr50193-1.c
pr50205.c
pr50251.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr50290.c
pr50310-1.c
pr50310-2.c
pr50340.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr50527.c
pr50571.c
pr50604.c
pr50613.c
pr50717-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr50763-2.c
pr50763-5.c
pr50763.c tree-ssa-sccvn.c (vn_nary_op_compute_hash): Also canonicalize comparison operand order and commutative ternary op operand order. 2015-08-12 14:27:40 +00:00
pr50764.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr50765.c
pr50827.c
pr50908-2.c
pr50908-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr50908.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr51012-1.c
pr51012-2.c
pr51034.c
pr51039.c
pr51261.c
pr51321.c
pr51408.c
pr51481.c
pr51491-2.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr51491.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51505.c
pr51519.c
pr51557.c
pr51644.c
pr51683.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51695.c
pr51721.c
pr51762.c
pr51796.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr51821.c
pr51865.c
pr51867.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-12.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-16.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-17.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879-18.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51879.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr51957-1.c
pr51957-1.h
pr51957-2.c
pr51990-2.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr51990.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr52045.c
pr52046.c
pr52086.c
pr52132.c
pr52134.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr52139.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr52210.c
pr52267.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr52283.c
pr52318.c
pr52355.c
pr52445.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr52448.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr52549.c
pr52578.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr52592.c
pr52691.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr52734.c
pr52769.c re PR c/52769 (Unspecified designated initializer might not set to zero in some cases) 2014-11-03 12:35:35 +00:00
pr52803.c
pr52808.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr52862.c
pr52880.c
pr52904.c
pr53060.c
pr53119.c
pr53153.c
pr53174.c
pr53196-1.c
pr53196-2.c
pr53265.c [PR middle-end/60832] Do not convert widest_int to tree just for printing it. 2015-09-21 10:11:24 +00:00
pr53352.c
pr53358.c
pr53532.c
pr53550.c
pr53701.c
pr53749.c
pr53849.c
pr53881-1.c
pr53881-2.c
pr53887.c
pr53942.c
pr54087.c [testsuite] Fix order of dg-do and dg-require-effective-target directives 2015-09-30 10:14:03 +02:00
pr54113.c
pr54121.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr54355.c
pr54363.c
pr54472.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr54669.c
pr54676.c
pr54782.c
pr54838.c
pr54919.c
pr54921.c
pr54981.c
pr55010.c
pr55019.c
pr55023.c re PR target/55023 (hppa: wrong code generated with tail call optimisation) 2014-12-22 23:10:18 +00:00
pr55027.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr55094.c
pr55110.c
pr55122.c
pr55150-1.c
pr55150-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr55153.c
pr55191.c
pr55236.c
pr55430.c
pr55570.c
pr55702.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr55831.c
pr55833.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr55838.c
pr55940.c
pr56023.c
pr56035.c
pr56078.c
pr56094.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr56098-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr56098-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr56117.c
pr56125.c
pr56144.c
pr56167.c
pr56228.c
pr56275.c
pr56341-1.c
pr56341-2.c
pr56350.c
pr56355-1.c
pr56396.c
pr56424.c
pr56436.c
pr56466.c
pr56494.c
pr56510.c
pr56548.c
pr56724-1.c
pr56724-2.c
pr56724-3.c
pr56809.c
pr56824.c
pr56837.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr56847.c
pr56890-1.c
pr56890-2.c
pr56977.c
pr56980.c c-objc-common.c (c_tree_printer): For a typedef name, print the stripped version as well, if they're not the same. 2014-10-30 17:22:12 +00:00
pr56989.c
pr56990.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr56992.c
pr56997-1.c
pr56997-2.c
pr56997-3.c
pr56997-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr57104.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr57105.c
pr57134.c
pr57149.c
pr57154.c
pr57184.c
pr57233.c
pr57286.c
pr57287-2.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr57287.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr57300.c
pr57518.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr57662.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr57773.c
pr57980.c
pr58010.c
pr58145-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58145-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58346.c
pr58432.c
pr58463.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58668.c
pr58742-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58742-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58742-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58805.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr58893-0.h
pr58893.c
pr58981.c
pr59011.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr59020.c
pr59261.c
pr59304.c
pr59350-2.c
pr59350.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr59351.c
pr59418.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr59471.c
pr59523.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr59605-2.c
pr59605.c
pr59630.c
pr59643.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr59670.c
pr59717.c re PR c/59717 (better warning when using functions without including appropriate header files) 2014-10-07 17:49:46 +00:00
pr59722.c
pr59827.c
pr59846.c
pr59860.c
pr59871.c
pr59920-1.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr59920-2.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr59920-3.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
pr59924.c
pr59940.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr59963-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr59963-2.c
pr59963-3.c
pr59992.c
pr60013.c
pr60036.c
pr60087.c
pr60114.c
pr60139.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr60195.c
pr60257.c
pr60267.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr60351.c
pr60485-1.c
pr60485-2.c
pr60598.c
pr60647-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr60647-2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pr60704.c
pr60784.c
pr60797.c
pr60844.c
pr60866.c re PR target/24188 (WRITE(6,*) causes an ICE with -mcmodel=medium) 2014-11-02 20:27:06 +01:00
pr60915.c
pr61045.c
pr61053.c
pr61058.c re PR rtl-optimization/61058 (ICE: RTL check: expected elt 3 type 'B', have '0' (rtx barrier) in distance_agu_use_in_bb, at config/i386/i386.c:16740 with __builtin_unreachable()) 2015-01-27 10:19:30 +01:00
pr61060.c
pr61077.c
pr61096-1.c re PR c/63567 (Linux kernel build error due to non-static initializers) 2014-10-17 21:02:54 +00:00
pr61096-2.c
pr61158.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr61162-2.c
pr61162.c
pr61220.c
pr61529.c [PATCH] Partially fix PR61529, bound basic block frequency 2014-11-10 17:53:21 +00:00
pr61561.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
pr61583.c
pr61692.c re PR inline-asm/61692 (ICE in extract_insn in recog.c for asm with many parameters) 2014-12-08 14:58:23 -07:00
pr61756.c
pr61762.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr61773.c re PR tree-optimization/61773 (ICE in tree-ssa-strlen.c:417) 2014-11-21 10:27:19 +01:00
pr61776.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr61852.c
pr61861.c
pr61868.c
pr62004.c
pr62024.c
pr62030.c
pr62070.c
pr62090-2.c
pr62090.c
pr62167-run.c Fix tail-merge pass for dead type-unsafe code 2014-11-19 10:44:58 +00:00
pr62167.c alias.c (alias_set_entry_d): Add is_pointer and has_pointer. 2015-05-30 00:32:04 +00:00
pr62294.c
pr62294.h
pr63186.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
pr63284.c
pr63342.c
pr63387-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr63387.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr63453.c re PR c/63453 (Bogus warning for gnu_inline functions) 2014-10-03 20:14:48 +00:00
pr63480.c re PR c/63480 (-Wmissing-field-initializers should not warn about intentionally empty initializers (or that should be a separate option)) 2014-10-09 08:25:50 +00:00
pr63543.c re PR c/63543 (incomplete type error should suppress duplicates) 2014-10-17 18:53:35 +00:00
pr63549.c re PR c/63549 ([4.8/4.9/5] ICE in build_array_ref with invalid code) 2014-10-17 18:42:27 +00:00
pr63567-1.c re PR c/63567 (Linux kernel build error due to non-static initializers) 2014-10-17 21:02:54 +00:00
pr63567-2.c re PR c/63567 (Linux kernel build error due to non-static initializers) 2014-10-17 21:02:54 +00:00
pr63567-3.c re PR c/63567 (Linux kernel build error due to non-static initializers) 2014-10-19 16:47:35 +00:00
pr63567-4.c re PR c/63567 (Linux kernel build error due to non-static initializers) 2014-10-19 16:47:35 +00:00
pr63568.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr63593.c re PR tree-optimization/63593 (ICE: verify_gimple failed: incompatible types in PHI argument 0 with -O3 -fno-tree-vectorize) 2015-02-16 14:52:14 +00:00
pr63594-1.c pr46799.c: XFAIL on AIX. 2014-11-23 20:59:38 -05:00
pr63594-2.c pr46799.c: XFAIL on AIX. 2014-11-23 20:59:38 -05:00
pr63626.c re PR c/63626 (Warning "inline function declared but never defined" output twice) 2014-10-23 16:46:44 +00:00
pr63637-1.c re PR rtl-optimization/63637 (CSE on x86 asm()-s no longer working due to PR/60663 fix) 2015-01-23 20:55:16 +01:00
pr63637-2.c re PR rtl-optimization/63637 (CSE on x86 asm()-s no longer working due to PR/60663 fix) 2015-01-23 20:55:16 +01:00
pr63637-3.c re PR rtl-optimization/63637 (CSE on x86 asm()-s no longer working due to PR/60663 fix) 2015-01-23 20:55:16 +01:00
pr63637-4.c re PR rtl-optimization/63637 (CSE on x86 asm()-s no longer working due to PR/60663 fix) 2015-01-23 20:55:16 +01:00
pr63637-5.c re PR rtl-optimization/63637 (CSE on x86 asm()-s no longer working due to PR/60663 fix) 2015-01-23 20:55:16 +01:00
pr63637-6.c re PR rtl-optimization/63637 (CSE on x86 asm()-s no longer working due to PR/60663 fix) 2015-01-23 20:55:16 +01:00
pr63665.c re PR tree-optimization/63665 (wrong code with signed overflow even with -fwrapv) 2014-10-28 11:42:43 +00:00
pr63743.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr63748.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr63762.c re PR middle-end/63762 ([ARM]GCC generates UNPREDICTABLE STR with Rn = Rt when hard-float abi is used) 2014-11-19 15:15:51 +00:00
pr63770.c re PR middle-end/63770 (ICE on valid code at all optimization levels on x86_64-linux-gnu) 2014-11-07 10:51:06 +00:00
pr63804.c re PR rtl-optimization/63804 (ice in find_oldest_value_reg with -g -O2) 2014-12-15 19:40:35 +01:00
pr63835.c Add a testcase for PR tree-optimization/63835 2014-11-12 10:56:50 -08:00
pr63856.c pr63856 - test case 2014-11-23 22:24:59 +00:00
pr63877.c re PR c/63877 (- -Wmissing-declarations produces false alarms for C99 inline functions) 2014-11-25 08:28:45 +00:00
pr63914.c devirt-28a.C: Require LTO effective target. 2015-04-30 22:22:51 +02:00
pr64007.c re PR rtl-optimization/63917 (r217646 caused many failures) 2014-12-12 05:51:19 +00:00
pr64015.c [AArch64] Enable CCMP support for AArch64, PR64015 resolved 2015-01-16 11:48:00 +00:00
pr64075.c re PR lto/64075 (ICE: in bp_pack_value, at data-streamer.h:106) 2014-11-26 13:53:38 +00:00
pr64087.c re PR rtl-optimization/64087 (ICE on valid code at -O3 on x86_64-linux-gnu in in lra_create_live_ranges, at lra-lives.c:1330) 2014-11-28 15:39:52 +00:00
pr64223-1.c re PR c/64223 (same warning repeated twice with same line number) 2015-06-03 08:24:50 +00:00
pr64223-2.c re PR c/64223 (same warning repeated twice with same line number) 2015-06-03 08:24:50 +00:00
pr64252.c re PR target/64252 (expand_vec_perm_pblendv caused miscompilation) 2014-12-10 20:59:57 +01:00
pr64277.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr64295.c re PR tree-optimization/64295 (ICE: SIGSEGV (infinite recursion) with -frounding-math -funsafe-math-optimizations) 2014-12-15 13:01:47 +00:00
pr64309.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr64316.c re PR rtl-optimization/64316 (ICE in simplify_const_unary_operation after r218503) 2014-12-15 21:10:45 +01:00
pr64406.c re PR tree-optimization/64406 (ICE: SIGSEGV in estimate_numbers_of_iterations_loop (tree-ssa-loop-niter.c:3453) with custom flags) 2015-01-13 13:41:46 +00:00
pr64417.c re PR c/64417 ([SH] FAIL: gcc.c-torture/compile/pr28865.c -O0 (test for excess errors)) 2015-01-07 08:19:48 +00:00
pr64423.c re PR c/64423 (Incorrect column number of -Wchar-subscripts) 2015-01-05 12:03:57 +00:00
pr64434.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr64440.c re PR c/64440 (-Wdiv-by-zero false negative on const variables) 2015-01-07 08:21:50 +00:00
pr64454.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr64465.c re PR middle-end/64465 (internal compiler error: verify_flow_info failed) 2015-01-05 22:45:08 +01:00
pr64511.c re PR debug/64511 (ICE at -O3 with -g enabled on x86_64-linux-gnu) 2015-01-21 22:59:34 +01:00
pr64536.c re PR rtl-optimization/64536 (Undefined .L* symbol starting with jump2 on s390x) 2015-01-09 22:17:10 +01:00
pr64563.c re PR tree-optimization/64563 (ICE with "-Wall -Wextra" at -Os and above on x86_64-linux-gnu) 2015-01-12 21:48:09 +01:00
pr64663.c re PR debug/64663 (ICE at -O1 and above with -g enabled on x86_64-linux-gnu) 2015-01-20 19:29:58 +01:00
pr64709.c re PR c/64709 (Bogus -Wmissing-field-initializers warning) 2015-01-29 21:02:21 +00:00
pr64715-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr64715-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pr64766.c re PR middle-end/64766 (internal compiler error: tree check: expected block, have error_mark in lower_function_body, at gimple-low.c:122) 2015-01-27 09:13:45 +01:00
pr64778.c re PR c/64778 (ICE on invalid code on x86_64-linux-gnu: tree check: expected class ‘type’, have ‘exceptional’ (error_mark) in create_tmp_from_val, at gimplify.c:491) 2015-01-26 22:32:09 +01:00
pr64807.c re PR tree-optimization/64807 (Wrong-code because of wide-int division) 2015-01-27 09:26:13 +01:00
pr64817-1.c re PR debug/64817 (compilation hangs at -O3 with -g enabled on x86_64-linux-gnu) 2015-02-01 18:26:17 +01:00
pr64817-2.c re PR debug/64817 (compilation hangs at -O3 with -g enabled on x86_64-linux-gnu) 2015-02-01 18:26:17 +01:00
pr64817-3.c Fix signedness of compares expanding debug exprs. 2015-02-04 14:24:00 +00:00
pr64856.c re PR c/64856 (Initializing struct not accepted in gnu99) 2015-02-09 21:19:02 +00:00
pr64935-1.c pr64935-1.c: XFAIL on AIX. 2015-09-26 11:34:58 -04:00
pr64935-2.c pr64935-1.c: XFAIL on AIX. 2015-09-26 11:34:58 -04:00
pr65050.c re PR c/65050 (Show the type for "array type has incomplete element type" error) 2015-02-13 22:07:36 +00:00
pr65063.c re PR tree-optimization/65063 (gcc.dg/vect/vect-double-reduc-6.c FAILs with -O3 -fno-tree-loop-ivcanon -fno-tree-vectorize) 2015-02-18 13:08:58 +00:00
pr65066.c re PR c/65040 (gcc-5 -Wformat broken) 2015-02-27 14:11:53 +00:00
pr65228.c re PR c/65228 (ICE: expected tree that contains ‘decl minimal’ structure, have ‘error_mark’ in start_decl) 2015-02-27 12:18:57 +00:00
pr65321.c re PR rtl-optimization/65321 (ICE on valid code at -O2 and -O3 with -g enabled in decompose, at rtl.h:2007) 2015-03-10 07:36:50 +01:00
pr65345-1.c re PR c/65345 (ICE with _Generic selection on _Atomic int) 2015-04-23 14:35:12 +00:00
pr65345-2.c [PATCH] add sync_int_long target selector to gcc.dg/pr65345-2.c 2015-05-01 15:28:22 +00:00
pr65345-3.c re PR c/65345 (ICE with _Generic selection on _Atomic int) 2015-10-01 14:53:10 +00:00
pr65358.c [expr.c] PR target/65358 Avoid clobbering partial argument during sibcall 2015-05-27 13:25:01 +00:00
pr65408.c re PR target/65408 (powerpc64 function argument passing may access invalid memory) 2015-04-15 16:59:01 +09:30
pr65521.c * gcc.dg/pr65521.c: Fail on AIX. 2015-11-11 16:32:09 -05:00
pr65533.c re PR tree-optimization/65533 (252.eon in SPEC CPU 2000 failed to build) 2015-03-24 11:45:09 +01:00
pr65658.c re PR tree-optimization/65658 (Jump threading too pessimistic when optimizing for size) 2015-04-20 11:13:52 -06:00
pr65780-1.c Properly handle uninitialized common symbol 2015-04-17 09:23:24 -07:00
pr65780-2.c Properly handle uninitialized common symbol 2015-04-17 09:23:24 -07:00
pr65802.c Replace g++.dg/pr65802.C with gcc.dg/pr65802.c 2015-04-24 14:18:57 +00:00
pr65901.c c-typeck.c (c_build_va_arg): Clarify the error message. 2015-04-30 13:35:44 +00:00
pr66066-1.c re PR c/66066 (r222889 causes bogus error: initializer element is not constant) 2015-05-14 11:42:53 +00:00
pr66066-2.c re PR c/66066 (r222889 causes bogus error: initializer element is not constant) 2015-05-14 11:42:53 +00:00
pr66066-3.c re PR c/66066 (r222889 causes bogus error: initializer element is not constant) 2015-05-14 11:42:53 +00:00
pr66187-1.c re PR rtl-optimization/66187 (wrong code at -O1, -O2 and -O3 on x86_64-linux-gnu) 2015-05-19 15:54:32 +02:00
pr66187-2.c re PR rtl-optimization/66187 (wrong code at -O1, -O2 and -O3 on x86_64-linux-gnu) 2015-05-19 15:54:32 +02:00
pr66299-1.c re PR tree-optimization/66299 (more optimize opportunity) 2015-06-09 14:24:04 +00:00
pr66299-2.c re PR tree-optimization/66299 (more optimize opportunity) 2015-06-09 14:24:04 +00:00
pr66299-3.c re PR tree-optimization/66299 (more optimize opportunity) 2015-06-09 14:24:04 +00:00
pr66444.c Handle -fipa-ra in reload_combine 2015-06-08 16:59:31 +00:00
pr66899.c pr49551.c: Needs -fdata-sections. 2015-08-24 14:06:12 +00:00
pr67028.c re PR rtl-optimization/67028 (combine bug. Different assumptions about subreg in different places.) 2015-08-08 03:51:27 +02:00
pr67029.c Add alternative_mask to ira_implicitly_set_insn_hard_regs 2015-08-07 09:18:09 -07:00
pr67043.c re PR debug/67043 (-fcompare-debug failure with -O3) 2015-08-04 02:11:58 +00:00
pr67077.c Add a testcase for PR tree-optimization/67077 2015-08-03 09:58:03 -07:00
pr67088.c re PR c/67088 (Incorrect location of error on invalid type used in bit-field declaration) 2015-08-03 13:55:28 +00:00
pr67107.c re PR c/67107 (ICE: SIGSEGV in tree_class_check with -frounding-math -funsafe-math-optimizations) 2015-08-05 07:42:54 +00:00
pr67271.c re PR middle-end/67271 (ICE with -O1,2,3 on darwin14.5 x86_64) 2015-09-16 14:26:04 +00:00
pr67312.c revert to assign_parms assignments using default defs 2015-09-27 09:02:00 +00:00
pr67432.c re PR c/67432 (Improve error message on empty enum) 2015-09-02 21:00:38 +00:00
pr67465.c [RTL-ifcvt] PR rtl-optimization/67465: Handle pairs of complex+simple blocks and empty blocks more gracefully 2015-09-28 08:23:47 +00:00
pr67512.c re PR middle-end/67512 (internal compiler error: in invert_tree_comparison, at fold-const.c:2456) 2015-09-09 17:09:32 +00:00
pr67563.c re PR middle-end/67563 (verify_flow_info failed) 2015-09-15 12:37:19 +00:00
pr67580.c re PR c/67580 (Improve error message on missing "struct" tag) 2015-09-15 17:19:11 +00:00
pr67730-1.c re PR c/67730 (No warning when returning NULL in void function) 2015-10-02 18:01:50 +00:00
pr67730-2.c re PR c/67730 (No warning when returning NULL in void function) 2015-10-02 18:01:50 +00:00
pr67730.c re PR c/67730 (No warning when returning NULL in void function) 2015-09-30 11:26:44 +00:00
pr67730.h re PR c/67730 (No warning when returning NULL in void function) 2015-10-02 18:01:50 +00:00
pr67784-1.c re PR c/67784 (Incorrect parsing when using declarations in for loops and typedefs) 2015-11-12 21:07:04 +00:00
pr67784-2.c re PR c/67784 (Incorrect parsing when using declarations in for loops and typedefs) 2015-11-12 21:07:04 +00:00
pr67786.c [RTL ifcvt] PR 67786, 67787: Check that intermediate instructions in the basic block don't clobber a reg used in condition 2015-10-02 08:36:45 +00:00
pr67787.c [RTL ifcvt] PR 67786, 67787: Check that intermediate instructions in the basic block don't clobber a reg used in condition 2015-10-02 08:36:45 +00:00
pr67830.c [RFA] Fix pr67830, another type narrowing problem 2015-10-23 13:16:53 -06:00
pr67964.c re PR c/67964 (Multiple attributes wrongly accepted without commas) 2015-10-20 16:53:45 +00:00
pr68024.c re PR c/68024 (Diagnose variadic functions defined without prototypes) 2015-10-21 17:30:20 +00:00
pr68088_1.c [ARM/AArch64] PR 68088: Fix RTL checking ICE due to subregs inside accumulator forwarding check 2015-11-06 12:04:15 +00:00
pr68090.c re PR c/68090 (VLA compound literal -- "confused by earlier errors, bailing out") 2015-11-05 18:21:30 +00:00
pr68112.c [PATCH] tree-scalar-evolution.c: Handle LSHIFT by constant 2015-11-05 18:39:38 +00:00
pr68129_1.c [AArch64] PR target/68129: Define TARGET_SUPPORTS_WIDE_INT 2015-11-09 15:53:26 +00:00
pr68286.c expr.c (do_store_flag): Expand vector comparison as VEC_COND_EXPR if... 2015-11-12 11:38:24 +00:00
pr68306-2.c re PR tree-optimization/68306 (ICE: in vectorizable_store, at tree-vect-stmts.c:5651) 2015-11-13 12:14:57 +00:00
pr68306-3.c re PR tree-optimization/68306 (ICE: in vectorizable_store, at tree-vect-stmts.c:5651) 2015-11-13 12:14:57 +00:00
pr68306.c re PR tree-optimization/68306 (ICE: in vectorizable_store, at tree-vect-stmts.c:5651) 2015-11-13 12:14:57 +00:00
pr68320.c re PR c/68320 (internal compiler error: in declspecs_add_type) 2015-11-13 14:05:59 +00:00
pragma-align-2.c
pragma-align.c
pragma-darwin-2.c
pragma-darwin.c
pragma-diag-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
pragma-diag-2.c
pragma-diag-3.c re PR c/66098 (#pragma diagnostic 'ignored' not fully undone by pop for strict-overflow) 2015-08-11 13:34:00 +00:00
pragma-diag-4.c re PR c/66098 (#pragma diagnostic 'ignored' not fully undone by pop for strict-overflow) 2015-08-11 13:34:00 +00:00
pragma-diag-5.c * gcc.dg/pragma-diag-5.c: Make test cases unique. 2015-11-06 21:16:30 +00:00
pragma-diag-6.c [c-family/49654/49655] reject invalid options in pragma diagnostic 2015-09-23 13:07:07 +00:00
pragma-init-fini-2.c
pragma-init-fini.c
pragma-message.c Fix column location in c_lex_with_flags errors 2015-08-22 12:44:51 +00:00
pragma-ms_struct.c
pragma-pack-2.c
pragma-pack-3.c
pragma-pack-4.c
pragma-pack-5.c
pragma-pop_options-1.c Fix "#pragma GCC pop_options" 2015-10-14 06:53:54 +00:00
pragma-push_macro-1.c
pragma-re-1.c
pragma-re-2.c
pragma-re-3.c
pragma-re-4.c
precedence-1.c
predict-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
predict-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
predict-3.c tree-ssa-sccvn.c (vn_nary_op_compute_hash): Also canonicalize comparison operand order and commutative ternary op operand order. 2015-08-12 14:27:40 +00:00
predict-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
predict-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
predict-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
predict-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
predict-8.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
prefetch-loop-arrays-1.c
profile-dir-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
profile-dir-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
profile-dir-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
profile-generate-1.c
profile-generate-2.c
profile-generate-3.c
proto-1.c
pthread-init-1.c
pthread-init-2.c
pthread-init-common.h
pubtypes-1.c
pubtypes-2.c
pubtypes-3.c pubtypes-3.c: Include <string.h>. 2014-11-15 16:06:55 +00:00
pubtypes-4.c pubtypes-3.c: Include <string.h>. 2014-11-15 16:06:55 +00:00
pure-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
pure-2.c * gcc.dg/pure-2.c: Update line numbers. 2014-11-19 08:48:54 +00:00
qual-component-1.c invoke.texi: Document -Wdiscarded-array-qualifiers. 2014-12-20 00:29:16 +00:00
qual-return-1.c
qual-return-2.c
qual-return-3.c
qual-return-4.c
range-test-1.c
readonly-loc.c
real-const-1.c
redecl-1.c
redecl-2.c
redecl-3.c
redecl-4.c re PR c/52952 (Wformat location info is bad (wrong column number)) 2015-05-21 06:49:38 +00:00
redecl-5.c
redecl-6.c
redecl-7.c
redecl-8.c
redecl-9.c
redecl-10.c
redecl-11.c
redecl-12.c
redecl-13.c
redecl-14.c c-objc-common.c (c_tree_printer): For a typedef name, print the stripped version as well, if they're not the same. 2014-10-30 17:22:12 +00:00
redecl-15.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
redecl-16.c
redecl-17.c
reg-vol-struct-1.c
register-var-1.c
register-var-2.c
register-var-3.c
return-type-1.c
return-type-2.c
return-type-3.c
section1.c
sequence-pt-1.c
sequence-pt-2.c
sequence-pt-3.c
sequence-pt-pr17880.c
setjmp-1.c nvptx cleanup 2015-08-21 13:13:42 +00:00
setjmp-2.c
setjmp-3.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
setjmp-4.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
setjmp-5.c ptx testsuite fixes for issues like indirect jumps and jump labels. 2014-11-10 16:30:50 +00:00
short-compare-1.c
short-compare-2.c
shrink-wrap-alloca.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
shrink-wrap-loop.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
shrink-wrap-pretend.c
shrink-wrap-sibcall.c
sibcall-1.c
sibcall-2.c
sibcall-3.c
sibcall-4.c
sibcall-6.c
sibcall-7.c
sibcall-8.c
sibcall-9.c sibcall-9.c: New test. 2015-02-20 17:17:21 +01:00
sibcall-10.c sibcall-9.c: New test. 2015-02-20 17:17:21 +01:00
signbit-sa.c signbit-sa.c: Add dg-require-effective-target c99_runtime 2015-03-08 22:45:32 +00:00
simd-1.c convert.c (convert_to_integer, [...]): Include the types in the error message. 2015-05-22 20:59:27 +00:00
simd-1b.c
simd-2.c
simd-3.c
simd-4.c
simd-5.c
simd-6.c
single-precision-constant.c
sizeof-1.c
sizeof-2.c
slp-1.c
smod-1.c
sms-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-8.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-9.c
sms-10.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-11.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
sms-12.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
spec-options.c
spellcheck-fields.c Implement Levenshtein distance; use in C FE for misspelled field names 2015-11-13 01:54:41 +00:00
spellcheck-options-1.c PR driver/67613 - spell suggestions for misspelled command line options 2015-11-13 01:59:03 +00:00
spellcheck-options-2.c PR driver/67613 - spell suggestions for misspelled command line options 2015-11-13 01:59:03 +00:00
spill-1.c
split-1.c
split-2.c
split-3.c
split-4.c
split-5.c
split-6.c
sso-1.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-2.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-3.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-4.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-5.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-6.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-7.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
sso-8.c Merge of the scalar-storage-order branch. 2015-11-08 18:33:42 +00:00
ssp-1.c [PR64164] Drop copyrename, use coalescible partition as base when optimizing. 2015-08-14 18:51:50 +00:00
ssp-2.c [PR64164] Drop copyrename, use coalescible partition as base when optimizing. 2015-08-14 18:51:50 +00:00
ssp-3.c
ssp-4.c
stack-layout-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
stack-layout-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
stack-usage-1.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
stack-usage-2.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
stackprotectexplicit1.c common.opt: New option -fstack-protector-explicit. 2015-01-14 22:29:12 -07:00
stmt-expr-1.c
stmt-expr-2.c
stmt-expr-3.c
stmt-expr-4.c
stmt-expr-label-1.c
stmt-expr-label-2.c
stmt-expr-label-3.c
store-motion-fgcse-sm.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strict-overflow-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strict-overflow-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strict-overflow-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strict-overflow-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strict-overflow-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strict-overflow-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
string-opt-1.c
strlenopt-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-1f.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-2f.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-4g.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-4gf.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-7.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-8.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-9.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-10.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-11.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-12.c
strlenopt-12g.c
strlenopt-13.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-14g.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-14gf.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-15.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-16g.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-17g.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-18g.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-19.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-20.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-21.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-22.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-22g.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-23.c
strlenopt-24.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-25.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-26.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt-27.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
strlenopt.h
strncpy-fix-1.c
struct-alias-1.c
struct-by-value-1.c
struct-by-value-2.c
struct-empty-1.c
struct-empty-2.c
struct-empty-3.c
struct-in-proto-1.c
struct-incompl-1.c
struct-parse-1.c
struct-parse-2.c
struct-ret-1.c
struct-ret-2.c
struct-ret-3.c
struct-ret-libc.c
struct-semi-1.c
struct-semi-2.c
struct-semi-3.c
struct-semi-4.c
superblock.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
switch-1.c
switch-2.c
switch-3.c
switch-4.c
switch-5.c
switch-6.c
switch-7.c
switch-8.c
switch-9.c
switch-A.c
switch-warn-1.c
switch-warn-2.c
switch-warn-3.c
sync-1.c
sync-2.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
sync-3.c 20020122-2.c: Use dg-additional-options. 2014-10-16 08:47:22 +00:00
system-binary-constants-1.c
system-binary-constants-1.h
tail-merge-store.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
tg-tests.h tg-tests.h (foo_1): Also check if f and ld are non-zero for __builtin_signbit tests. 2015-09-29 13:21:46 +02:00
titype-1.c
trampoline-1.c
transparent-union-1.c
transparent-union-2.c
transparent-union-3.c
transparent-union-4.c
transparent-union-5.c
trunc-1.c
two-types-1.c
two-types-2.c
two-types-3.c
two-types-4.c
two-types-5.c
two-types-6.c
two-types-7.c
two-types-8.c
two-types-9.c
two-types-10.c
typedef-init.c
typedef-redecl.c
typedef-redecl.h
typename-vla-1.c
typeof-1.c
typeof-2.c typeof-2.c: Add checks for non-atomic types. 2015-01-09 13:26:26 +00:00
typespec-1.c
ucnid-1.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-2.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-3.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-4.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-5.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
ucnid-7.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-8.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-9.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-10.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-11.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-12.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-13.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
ucnid-14.c Enable -fextended-identifiers by default. 2014-11-05 16:19:10 +00:00
unaligned-1.c
uninit-1-O0.c
uninit-1.c
uninit-2-O0.c
uninit-2.c
uninit-3-O0.c
uninit-3.c
uninit-4-O0.c
uninit-4.c
uninit-5-O0.c
uninit-5.c
uninit-6-O0.c
uninit-6.c
uninit-8-O0.c
uninit-8.c
uninit-9-O0.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
uninit-9.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
uninit-10-O0.c
uninit-10.c
uninit-11-O0.c
uninit-11.c
uninit-12-O0.c
uninit-12.c
uninit-13-O0.c
uninit-13.c
uninit-14-O0.c
uninit-14.c
uninit-15-O0.c
uninit-15.c
uninit-16.c
uninit-17-O0.c
uninit-17.c
uninit-18.c re PR middle-end/64614 (bogus used initialized warning (in gcc 4.9.2); switch statement versus &) 2015-01-16 13:26:10 +00:00
uninit-19.c Fix gcc.dg/uninit-19.c for fpic 2015-02-09 10:21:59 +00:00
uninit-20.c re PR tree-optimization/64823 (false "may be used uninitialized", missed jump threading) 2015-02-16 13:56:55 -07:00
uninit-A-O0.c
uninit-A.c
uninit-B-2.c
uninit-B-O0-2.c
uninit-B-O0.c
uninit-B.c
uninit-C-O0.c
uninit-C.c
uninit-H-O0.c
uninit-H.c
uninit-I-O0.c
uninit-I.c
uninit-pr19430-2.c
uninit-pr19430-O0.c
uninit-pr19430.c
uninit-pr20644-O0.c
uninit-pr20644.c
uninit-pr40943.c
uninit-pred-2_a.c
uninit-pred-2_b.c
uninit-pred-2_c.c
uninit-pred-3_a.c
uninit-pred-3_b.c
uninit-pred-3_c.c
uninit-pred-3_d.c
uninit-pred-3_e.c
uninit-pred-4_a.c
uninit-pred-4_b.c
uninit-pred-5_a.c
uninit-pred-5_b.c
uninit-pred-6_a.c
uninit-pred-6_b.c
uninit-pred-6_c.c
uninit-pred-6_d.c
uninit-pred-6_e.c
uninit-pred-7_a.c
uninit-pred-7_b.c
uninit-pred-7_c.c
uninit-pred-7_d.c
uninit-pred-8_a.c
uninit-pred-8_b.c
uninit-pred-8_c.c
uninit-pred-8_d.c
uninit-pred-9_a.c
uninit-pred-9_b.c
uninit-suppress.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
uninit-suppress_2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
union-1.c
union-2.c
union-3.c
union-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
union-5.c
union-cast-1.c
union-cast-2.c
union-cast-3.c
union-cast-4.c
unordered-1.c
unordered-2.c
unordered-3.c
unroll-1.c
unroll-2.c unroll_1.c: Rename gcc.dg/unroll_[1-5].c to unroll-[2-6]. 2015-01-15 18:21:51 +00:00
unroll-3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
unroll-4.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
unroll-5.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
unroll-6.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
unsigned-long-compare.c
unused-1.c
unused-2.c
unused-3.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
unused-4.c PR28901 -Wunused-variable ignores unused const initialised variables in C 2015-09-14 09:49:47 +00:00
unused-5.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
unused-6-WallWextra.c
unused-6-no.c
unused-6.c
unused-7.c
unused-8a.c
unused-8b.c
unused-variable-1.c PR28901 -Wunused-variable ignores unused const initialised variables in C 2015-09-14 09:49:47 +00:00
unused-variable-2.c PR28901 -Wunused-variable ignores unused const initialised variables in C 2015-09-14 09:49:47 +00:00
unwind-1.c 20001117-1.c: Needs return_address. 2015-08-25 16:22:42 +00:00
utf-array-short-wchar.c
utf-array.c
utf-badconcat.c
utf-badconcat2.c
utf-cvt.c
utf-dflt.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
utf-dflt2.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
utf-inc-init.c
utf-type.c
utf8-1.c
utf8-2.c
utf16-1.c
utf16-2.c
utf16-3.c
utf16-4.c
utf32-1.c
utf32-2.c
utf32-3.c
utf32-4.c
va-arg-1.c
va-arg-2.c
va-arg-3.c
va-arg-4.c
va-arg-5.c
va-arg-pack-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
va-arg-pack-2.c
va-arg-pack-len-1.c
va-arg-pack-len-2.c
var-expand1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
var-expand2.c
var-expand3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
varpool-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
vec-andxor1.c
vector-shift-2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
vector-shift.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
verbose-asm.c
visibility-1.c
visibility-2.c
visibility-3.c
visibility-4.c
visibility-5.c
visibility-6.c
visibility-7.c
visibility-8.c
visibility-9.c
visibility-10.c
visibility-11.c
visibility-12.c
visibility-13.c
visibility-14.c
visibility-15.c
visibility-16.c
visibility-17.c
visibility-18.c
visibility-19.c
visibility-20.c
visibility-21.c
visibility-22.c re PR rtl-optimization/32219 (optimizer causes wrong code in pic/hidden/weak symbol checking.) 2015-02-12 20:52:45 -08:00
visibility-23.c re PR rtl-optimization/32219 (optimizer causes wrong code in pic/hidden/weak symbol checking.) 2015-02-12 20:52:45 -08:00
visibility-a.c
visibility-b.c
visibility-c.c
visibility-d.c
vla-2.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
vla-3.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
vla-4.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
vla-5.c
vla-6.c
vla-7.c
vla-8.c
vla-9.c
vla-10.c
vla-11.c c-decl.c (get_parm_info): Remove static var. 2015-07-27 22:26:34 +00:00
vla-12.c
vla-13.c
vla-14.c
vla-15.c
vla-16.c
vla-17.c
vla-18.c
vla-19.c
vla-20.c
vla-21.c
vla-22.c Wsizeof-pointer-memaccess1.c: Require alloca. 2015-08-22 15:09:03 +00:00
vla-23.c
vla-init-1.c
vla-init-2.c
vla-init-3.c
vla-init-4.c
vla-init-5.c
void-cast-1.c
void-cast-2.c
volatile-bitfields-1.c
volatile-bitfields-2.c
volatile1.c
volatile2.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
volatile3.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
vrp-min-max-1.c tree-vrp.c (simplify_min_or_max_using_ranges): New. 2015-08-12 13:08:23 +00:00
vrp-min-max-2.c tree-vrp.c (simplify_min_or_max_using_ranges): New. 2015-08-12 13:08:23 +00:00
vshift-1.c
vshift-2.c
vshift-3.c
vshift-4.c
vshift-5.c
warn-1.c
warn-addr-cmp.c
warn-nsstring.c
wcaselabel-1.c
wchar_t-1.c
wchar_t-2.c
webizer.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
wide-shift-64.c [Patch][expand] Check gimple statement to improve LSHIFT_EXP expand 2015-08-19 22:55:28 +00:00
wide-shift-128.c [Patch][expand] Check gimple statement to improve LSHIFT_EXP expand 2015-08-19 22:55:28 +00:00
winline-1.c
winline-2.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
winline-3.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
winline-5.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
winline-6.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
winline-7.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
winline-9.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
winline-10.c [PATCH tree-inline] Do not say "called from here" with UNKNOWN_LOCATION 2015-09-22 09:14:04 +00:00
wint_t-1.c
wmul-1.c testsuite: auto-wipe dump files 2015-05-29 10:20:29 +02:00
wtr-aggr-init-1.c
wtr-conversion-1.c
wtr-escape-1.c
wtr-func-def-1.c 20001012-1.c: Fix defaulting to int. 2014-10-06 11:46:21 +00:00
wtr-int-type-1.c
wtr-label-1.c
wtr-static-1.c
wtr-strcat-1.c
wtr-suffix-1.c
wtr-switch-1.c
wtr-unary-plus-1.c
wtr-union-init-1.c
wtr-union-init-2.c
wtr-union-init-3.c
wtypequal.c
wvla-1.c
wvla-2.c
wvla-3.c
wvla-4.c
wvla-5.c
wvla-6.c
wvla-7.c
zero_sign_ext_test.c

README

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Notes for testsuite/gcc.dg.

1) There should be only one driver, dg.exp.

2) Try to organize the tests by topic using file name prefixes.

   Eg: All bitfield tests are named "bf-*.c".

   This lets the person running the tests choose particular sets of tests to
   run easily (using wildcards).

   Eg: make check RUNTESTFLAGS='dg.exp=bf-*.c'

3) Remember DOS file name restrictions (8.3).  Sigh.

4) Send bugs, comments, etc. to dje@cygnus.com.


Copyright (C) 1997-2015 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.