8sa1-gcc/gcc
Marek Polacek 69bf1c7d5e c++: Fix ICE with inline variable in template [PR97975]
In this test, we have

  static inline const int c = b;

in a class template, and we call store_init_value as usual.  There, the
value is

  IMPLICIT_CONV_EXPR<const float>(b)

which is is_nondependent_static_init_expression but isn't
is_nondependent_constant_expression (they only differ in STRICT).
We call fold_non_dependent_expr, but that just returns the expression
because it only instantiates is_nondependent_constant_expression
expressions.  Since we're not checking the initializer of a constexpr
variable, we go on to call maybe_constant_init, whereupon we crash
because it tries to evaluate all is_nondependent_static_init_expression
expressions, which our value is, but it still contains a template code.

I think the fix is to call fold_non_dependent_init instead of
maybe_constant_init, and only call fold_non_dependent_expr on the
"this is a constexpr variable" path so as to avoid instantiating twice
in a row.  Outside a template this should also avoid evaluating the
value twice.

gcc/cp/ChangeLog:

	PR c++/97975
	* constexpr.c (fold_non_dependent_init): Add a tree parameter.
	Use it.
	* cp-tree.h (fold_non_dependent_init): Add a tree parameter with
	a default value.
	* typeck2.c (store_init_value): Call fold_non_dependent_expr
	only when checking the initializer for constexpr variables.
	Call fold_non_dependent_init instead of maybe_constant_init.

gcc/testsuite/ChangeLog:

	PR c++/97975
	* g++.dg/cpp1z/inline-var8.C: New test.
2020-12-02 14:36:26 -05:00
..
ada Daily bump. 2020-12-01 00:16:38 +00:00
analyzer Daily bump. 2020-12-01 00:16:38 +00:00
brig Daily bump. 2020-11-21 00:16:29 +00:00
c Daily bump. 2020-11-27 00:16:31 +00:00
c-family Daily bump. 2020-12-02 00:16:41 +00:00
common RISC-V: Support version controling for ISA standard extensions 2020-11-18 15:02:27 +08:00
config IBM Z: Use llihf and oilf to load large immediates into GPRs 2020-12-02 19:10:34 +01:00
cp c++: Fix ICE with inline variable in template [PR97975] 2020-12-02 14:36:26 -05:00
d Daily bump. 2020-11-30 00:16:27 +00:00
doc Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
fortran Daily bump. 2020-12-01 00:16:38 +00:00
ginclude C: Do not drop qualifiers in typeof for _Atomic types. [PR65455,PR92935] 2020-11-26 08:22:38 +01:00
go compiler: reword "declared and not used" error message 2020-12-02 08:30:43 -08:00
jit Daily bump. 2020-11-26 00:16:41 +00:00
lto Daily bump. 2020-11-21 00:16:29 +00:00
objc Daily bump. 2020-11-21 00:16:29 +00:00
objcp Daily bump. 2020-11-21 00:16:29 +00:00
po Daily bump. 2020-11-19 00:16:30 +00:00
testsuite c++: Fix ICE with inline variable in template [PR97975] 2020-12-02 14:36:26 -05:00
ABOUT-GCC-NLS
acinclude.m4
aclocal.m4
addresses.h
adjust-alignment.c
alias.c
alias.h
align.h
alloc-pool.c
alloc-pool.h
array-traits.h
asan.c libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
asan.h libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
attr-fnspec.h Copied arguments are readonly 2020-11-13 21:14:37 +01:00
attribs.c
attribs.h
auto-inc-dec.c
auto-profile.c
auto-profile.h
backend.h
BASE-VER
basic-block.h
bb-reorder.c
bb-reorder.h
bitmap.c More PRE compile-time optimizations 2020-11-12 15:08:43 +01:00
bitmap.h
brig-builtins.def
builtin-attrs.def
builtin-types.def libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
builtins.c PR middle-end/97373 - missing warning on sprintf into allocated destination 2020-12-01 13:39:46 -07:00
builtins.def libsanitizer: mid-end: Introduce stack variable handling for HWASAN 2020-11-25 16:38:06 +00:00
builtins.h PR middle-end/97373 - missing warning on sprintf into allocated destination 2020-12-01 13:39:46 -07:00
caller-save.c
calls.c core: Rename DECL_IS_BUILTIN -> DECL_IS_UNDECLARED_BUILTIN 2020-11-06 10:50:51 -08:00
calls.h can_implement_as_sibling_call_p REG_PARM_STACK_SPACE check 2020-11-03 09:36:40 +10:30
ccmp.c
ccmp.h
cfg-flags.def
cfg.c Free more of CFG 2020-11-25 15:05:41 +01:00
cfg.h Free more of CFG 2020-11-25 15:05:41 +01:00
cfganal.c
cfganal.h
cfgbuild.c
cfgbuild.h
cfgcleanup.c
cfgcleanup.h
cfgexpand.c libsanitizer: mid-end: Introduce stack variable handling for HWASAN 2020-11-25 16:38:06 +00:00
cfgexpand.h
cfghooks.c
cfghooks.h
cfgloop.c
cfgloop.h Clean up loop-closed PHIs after loop finalize 2020-11-18 13:29:14 +08:00
cfgloopanal.c
cfgloopmanip.c
cfgloopmanip.h
cfgrtl.c rtl_dump_bb: fix segfault when reporting internal error 2020-11-30 11:50:30 +01:00
cfgrtl.h
cgraph.c ipa: do not DECL_IS_MALLOC for void fns 2020-12-02 15:03:26 +01:00
cgraph.h Improve efficiency of copying section from another tree 2020-11-10 20:59:01 -07:00
cgraphbuild.c
cgraphclones.c cgraph: Avoid segfault when attempting to dump NULL clone_info 2020-11-12 19:56:22 +01:00
cgraphunit.c Fix thunk info WRT PCH 2020-10-30 14:30:43 +01:00
ChangeLog Daily bump. 2020-12-02 00:16:41 +00:00
ChangeLog-1997
ChangeLog-1998
ChangeLog-1999
ChangeLog-2000
ChangeLog-2001
ChangeLog-2002
ChangeLog-2003
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014
ChangeLog-2015
ChangeLog-2016
ChangeLog-2017
ChangeLog-2018
ChangeLog-2019
ChangeLog.dataflow
ChangeLog.gimple-classes
ChangeLog.graphite
ChangeLog.jit
ChangeLog.lib
ChangeLog.ptr
ChangeLog.tree-ssa
ChangeLog.tuples
cif-code.def
collect2-aix.c
collect2-aix.h
collect2.c
collect2.h
collect-utils.c
collect-utils.h
color-macros.h
combine-stack-adj.c
combine.c aarch64: Fix PR96998 and restore code quality in combine 2020-10-30 09:21:31 +00:00
common.md
common.opt libsanitizer: options: Add hwasan flags and argument parsing 2020-11-25 16:35:39 +00:00
compare-elim.c
conditions.h
config.build
config.gcc x86: Add -mneeded for GNU_PROPERTY_X86_ISA_1_V[234] marker 2020-12-01 16:33:10 -08:00
config.host
config.in Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
configure Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
configure.ac Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
context.c
context.h
convert.c
convert.h
COPYING
COPYING3
COPYING3.LIB
COPYING.LIB
coretypes.h
coroutine-builtins.def
coroutine-passes.cc
coverage.c gcov: Add -fprofile-info-section support 2020-11-16 12:52:14 +01:00
coverage.h
cppbuiltin.c libsanitizer: options: Add hwasan flags and argument parsing 2020-11-25 16:35:39 +00:00
cppbuiltin.h
cppdefault.c
cppdefault.h
cprop.c
cse.c
cselib.c
cselib.h
cstamp-h.in
data-streamer-in.c
data-streamer-out.c
data-streamer.c
data-streamer.h
DATESTAMP Daily bump. 2020-12-02 00:16:41 +00:00
dbgcnt.c
dbgcnt.def Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
dbgcnt.h
dbxout.c Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
dbxout.h
dce.c
dce.h
ddg.c
ddg.h
debug.c
debug.h
defaults.h
DEV-PHASE
df-core.c
df-problems.c
df-scan.c Add -fzero-call-used-regs option and zero_call_used_regs function attributes. 2020-10-30 20:41:38 +01:00
df.h Add -fzero-call-used-regs option and zero_call_used_regs function attributes. 2020-10-30 20:41:38 +01:00
dfp.c
dfp.h
diagnostic-color.c
diagnostic-color.h
diagnostic-core.h
diagnostic-event-id.h
diagnostic-format-json.cc
diagnostic-metadata.h
diagnostic-path.h
diagnostic-show-locus.c
diagnostic-url.h
diagnostic.c diagnostics: ignore -fmax-errors for ICE 2020-12-02 08:21:25 +01:00
diagnostic.def
diagnostic.h
digraph.cc Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
digraph.h
dojump.c
dojump.h
dominance.c
dominance.h
domwalk.c
domwalk.h
double-int.c
double-int.h
dse.c dse: Cope with bigger-than-integer modes [PR98037] 2020-11-30 17:15:47 +00:00
dump-context.h
dumpfile.c Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
dumpfile.h
dwarf2asm.c
dwarf2asm.h
dwarf2cfi.c
dwarf2out.c c++, debug: Treat -std=c++20 -gdwarf-5 like C++14 rather than C++98 2020-12-01 09:41:16 +01:00
dwarf2out.h Enhance debug info for fixed-point types 2020-11-19 11:04:52 +01:00
early-remat.c
edit-context.c Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
edit-context.h
emit-rtl.c
emit-rtl.h Add -fzero-call-used-regs option and zero_call_used_regs function attributes. 2020-10-30 20:41:38 +01:00
errors.c
errors.h
escaped_string.h
et-forest.c
et-forest.h
except.c
except.h
exec-tool.in
explow.c expansion: Fix up infinite recursion due to double-word modulo optimization 2020-12-02 11:40:47 +01:00
explow.h libsanitizer: mid-end: Introduce stack variable handling for HWASAN 2020-11-25 16:38:06 +00:00
expmed.c expansion: Fix up infinite recursion due to double-word modulo optimization 2020-12-02 11:40:47 +01:00
expmed.h expansion: Fix up infinite recursion due to double-word modulo optimization 2020-12-02 11:40:47 +01:00
expr.c expansion: Fix up infinite recursion due to double-word modulo optimization 2020-12-02 11:40:47 +01:00
expr.h
fibonacci_heap.c
fibonacci_heap.h
file-find.c
file-find.h
file-prefix-map.c
file-prefix-map.h
final.c Relocatable read-only section support for absolute jump table 2020-11-17 13:53:14 +08:00
fixed-value.c
fixed-value.h
flag-types.h libsanitizer: options: Add hwasan flags and argument parsing 2020-11-25 16:35:39 +00:00
flags.h
fold-const-call.c builtins: Add DFP signaling NaN built-in functions 2020-11-06 21:55:19 +00:00
fold-const-call.h
fold-const.c middle-end, c++: Treat shifts by negative as undefined [PR96929] 2020-11-24 09:03:17 +01:00
fold-const.h Fix middle-end/85811: Introduce tree_expr_maybe_non_p et al. 2020-11-18 15:09:46 -07:00
fp-test.c
FSFChangeLog
FSFChangeLog.10
FSFChangeLog.11
function-abi.cc
function-abi.h
function-tests.c Clean up irange self tests. 2020-11-09 16:29:47 +01:00
function.c Make -fzero-call-used-regs work on the SPARC 2020-12-01 21:15:53 +01:00
function.h pass: Run cleanup passes before SLP [PR96789] 2020-11-02 20:55:48 -06:00
fwprop.c
gcc-ar.c
gcc-main.c
gcc-plugin.h
gcc-rich-location.c
gcc-rich-location.h
gcc-symtab.h
gcc.c driver: Don't imply -dD for -g3 -g0 [PR97989] 2020-12-01 09:39:04 +01:00
gcc.h
gcov-counter.def
gcov-dump.c
gcov-io.c
gcov-io.h
gcov-iov.c
gcov-tool.c
gcov.c
gcse-common.c
gcse-common.h
gcse.c
gcse.h
gdbasan.in
gdbhooks.py
gdbinit.in GDB hooks: improve documentation 2020-12-02 11:31:09 +01:00
gen-pass-instances.awk
genattr-common.c
genattr.c
genattrtab.c
genautomata.c
gencfn-macros.c
gencheck.c
genchecksum.c
gencodes.c
genconditions.c
genconfig.c
genconstants.c
genemit.c
genenums.c
generic-match-head.c
generic-match.h
genextract.c
genflags.c
gengenrtl.c
gengtype-lex.l
gengtype-parse.c
gengtype-state.c
gengtype.c PR target/96342 Change field "simdlen" into poly_uint64 2020-11-03 16:13:47 +00:00
gengtype.h
genhooks.c
genmatch.c
genmddeps.c
genmddump.c
genmodes.c Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
genmultilib
genopinit.c
genoutput.c
genpeep.c
genpreds.c
genrecog.c
gensupport.c
gensupport.h
gentarget-def.c
ggc-common.c
ggc-internal.h
ggc-none.c
ggc-page.c
ggc-tests.c
ggc.h
gimple-array-bounds.cc
gimple-array-bounds.h
gimple-builder.c
gimple-builder.h
gimple-expr.c
gimple-expr.h
gimple-fold.c Fix __builtin_clear_padding for empty struct. 2020-12-02 11:32:54 +01:00
gimple-fold.h libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
gimple-if-to-switch.cc if-to-switch: Support chain with 2 BBs. 2020-12-02 08:18:18 +01:00
gimple-isel.cc gimple ISEL: fix BB stmt iteration 2020-11-30 12:57:31 +01:00
gimple-iterator.c
gimple-iterator.h
gimple-laddress.c
gimple-loop-interchange.cc loops: Invoke lim after successful loop interchange 2020-11-13 15:35:18 +01:00
gimple-loop-jam.c
gimple-loop-versioning.cc
gimple-low.c
gimple-low.h
gimple-match-head.c
gimple-match.h
gimple-predict.h
gimple-pretty-print.c libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
gimple-pretty-print.h
gimple-range-cache.cc Add Ranger temporal cache 2020-11-04 13:07:53 -05:00
gimple-range-cache.h Add Ranger temporal cache 2020-11-04 13:07:53 -05:00
gimple-range-edge.cc
gimple-range-edge.h
gimple-range-gori.cc Fix logical_combine OR operation. Again. 2020-11-09 19:41:05 -05:00
gimple-range-gori.h
gimple-range.cc Cleanup range of address calculations. 2020-11-13 09:36:20 -05:00
gimple-range.h Re: Fix gimple_expr_code? 2020-11-13 13:59:44 -05:00
gimple-ssa-backprop.c
gimple-ssa-evrp-analyze.c tree-optimization/97953 - fix bougs range recorded by EVRP 2020-11-26 16:18:07 +01:00
gimple-ssa-evrp-analyze.h
gimple-ssa-evrp.c
gimple-ssa-isolate-paths.c
gimple-ssa-nonnull-compare.c
gimple-ssa-split-paths.c
gimple-ssa-sprintf.c PR middle-end/97373 - missing warning on sprintf into allocated destination 2020-12-01 13:39:46 -07:00
gimple-ssa-store-merging.c Plug loophole in string store merging 2020-11-20 12:24:08 +01:00
gimple-ssa-strength-reduction.c
gimple-ssa-warn-alloca.c
gimple-ssa-warn-restrict.c
gimple-ssa-warn-restrict.h
gimple-ssa.h
gimple-streamer-in.c
gimple-streamer-out.c
gimple-streamer.h
gimple-walk.c
gimple-walk.h
gimple.c Add EAF_NODIRECTESCAPE flag 2020-11-25 20:51:26 +01:00
gimple.def
gimple.h Decompose OpenACC 'kernels' constructs into parts, a sequence of compute constructs 2020-11-13 22:58:57 +01:00
gimplify-me.c remove almost all users of gimple_expr_code 2020-11-13 11:35:01 +01:00
gimplify-me.h
gimplify.c libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
gimplify.h
glimits.h
godump.c core: Rename DECL_IS_BUILTIN -> DECL_IS_UNDECLARED_BUILTIN 2020-11-06 10:50:51 -08:00
graph.c
graph.h
graphds.c
graphds.h
graphite-dependences.c
graphite-isl-ast-to-gimple.c
graphite-optimize-isl.c
graphite-poly.c
graphite-scop-detection.c
graphite-sese-to-poly.c
graphite.c
graphite.h
graphviz.cc
graphviz.h
gsstruct.def
gstab.h
gsyms.h
gsyslimits.h
gtm-builtins.def
haifa-sched.c
hard-reg-set.h
hash-map-tests.c
hash-map-traits.h
hash-map.h
hash-set-tests.c
hash-set.h
hash-table.c
hash-table.h
hash-traits.h
highlev-plugin-common.h
hooks.c
hooks.h
host-default.c
hosthooks-def.h
hosthooks.h
hw-doloop.c
hw-doloop.h
hwint.c
hwint.h
ifcvt.c
ifcvt.h
inchash.c
inchash.h
incpath.c
incpath.h
init-regs.c
input.c
input.h
insn-addr.h
insn-notes.def
int-vector-builder.h
internal-fn.c expansion: Further improve double-word modulo, division and divmod [PR97459] 2020-12-02 11:40:47 +01:00
internal-fn.def libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
internal-fn.h expansion: Improve double-word modulo by certain constant divisors [PR97459] 2020-11-30 10:55:43 +01:00
intl.c
intl.h
ipa-comdats.c
ipa-cp.c ipa: special pass-through op for Fortran strides 2020-11-23 23:52:29 +01:00
ipa-devirt.c Additional small changes to support opaque modes 2020-11-21 07:37:06 -06:00
ipa-fnsummary.c Add fnspec handling to ipa mode of ipa-modef. 2020-11-06 10:23:58 +01:00
ipa-fnsummary.h Move size time tables from GGC to heap 2020-11-06 10:05:11 +01:00
ipa-icf-gimple.c Improve hashing of decls in ipa-icf-gimple 2020-11-20 20:36:14 +01:00
ipa-icf-gimple.h Improve handling of memory operands in ipa-icf 2/4 2020-11-13 16:04:48 +01:00
ipa-icf.c Improve hasing of anonymous namespace types 2020-11-21 17:41:45 +01:00
ipa-icf.h Improve handling of memory operands in ipa-icf 3/4 2020-11-17 15:41:06 +01:00
ipa-inline-analysis.c
ipa-inline-transform.c Avoid recursion in tree-inline 2020-11-03 11:56:05 +01:00
ipa-inline.c
ipa-inline.h
ipa-modref-tree.c
ipa-modref-tree.h ipa-modref: Fix comment typos 2020-11-06 13:20:51 +01:00
ipa-modref.c Fix handling of ignore_stores in ipa_merge_modref_summary_after_inlining 2020-11-29 23:23:33 +01:00
ipa-modref.h IPA tracking of EAF flags in ipa-modref. 2020-11-16 19:30:45 +01:00
ipa-param-manipulation.c Move clone_info to summary 2020-10-31 10:18:06 +01:00
ipa-param-manipulation.h
ipa-polymorphic-call.c
ipa-predicate.c
ipa-predicate.h
ipa-profile.c
ipa-prop.c ipa: special pass-through op for Fortran strides 2020-11-23 23:52:29 +01:00
ipa-prop.h ipa: special pass-through op for Fortran strides 2020-11-23 23:52:29 +01:00
ipa-pure-const.c ipa: do not DECL_IS_MALLOC for void fns 2020-12-02 15:03:26 +01:00
ipa-ref.c Move ipa-refs from ggc to heap. 2020-11-06 13:30:39 +01:00
ipa-ref.h Move ipa-refs from ggc to heap. 2020-11-06 13:30:39 +01:00
ipa-reference.c
ipa-reference.h
ipa-split.c
ipa-sra.c Move clone_info to summary 2020-10-31 10:18:06 +01:00
ipa-utils.c
ipa-utils.h Make ltrans type canonicals compatible with WPA ones 2020-11-17 15:38:13 +01:00
ipa-visibility.c
ipa.c
ira-build.c
ira-color.c
ira-conflicts.c
ira-costs.c
ira-emit.c
ira-int.h
ira-lives.c
ira.c Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
ira.h [PATCH] Implementation of asm goto outputs 2020-11-13 13:01:51 -05:00
is-a.h
json.cc Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
json.h
jump.c
langhooks-def.h langhooks: preprocessor hooks for c++ modules 2020-11-17 06:12:01 -08:00
langhooks.c
langhooks.h langhooks: preprocessor hooks for c++ modules 2020-11-17 06:12:01 -08:00
LANGUAGES
lcm.c
lcm.h
libfuncs.h
limitx.h
limity.h
lists.c
lock-and-run.sh
loop-doloop.c
loop-init.c Clean up loop-closed PHIs after loop finalize 2020-11-18 13:29:14 +08:00
loop-invariant.c loop-invariant: JUMP_INSNs aren't loop invariant [PR97954] 2020-12-01 16:23:59 +01:00
loop-iv.c loop-iv: Fix typo in `iv_analyze_expr' description 2020-12-02 04:28:26 +00:00
loop-unroll.c
loop-unroll.h
lower-subreg.c
lower-subreg.h
lra-assigns.c [PATCH] Implementation of asm goto outputs 2020-11-13 13:01:51 -05:00
lra-coalesce.c
lra-constraints.c [PR97870] LRA: don't remove asm goto, just nullify it. 2020-11-18 10:11:33 -05:00
lra-eliminations.c
lra-int.h Take insn scratch RA requirements into account in IRA. 2020-10-30 15:08:23 -04:00
lra-lives.c
lra-remat.c Take insn scratch RA requirements into account in IRA. 2020-10-30 15:08:23 -04:00
lra-spills.c [PATCH] Implementation of asm goto outputs 2020-11-13 13:01:51 -05:00
lra.c [PR97983] LRA: Use the right emit func for putting insn in the destination BB. 2020-11-25 19:58:01 -05:00
lra.h
lto-cgraph.c Move clone_info to summary 2020-10-31 10:18:06 +01:00
lto-compress.c
lto-compress.h
lto-opts.c
lto-section-in.c
lto-section-names.h
lto-section-out.c
lto-streamer-in.c Do not leak SSANAMES in lto streamer 2020-11-23 16:53:25 +01:00
lto-streamer-out.c
lto-streamer.c
lto-streamer.h
lto-wrapper.c Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
machmode.def Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
machmode.h Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
main.c
Makefile.in Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
match.pd Optimize max/min pattern with comparison 2020-12-01 16:26:59 -07:00
mcf.c
mem-stats-traits.h
mem-stats.h
memmodel.h
memory-block.cc
memory-block.h
mkconfig.sh
mode-classes.def Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
mode-switching.c
modulo-sched.c
multiple_target.c
omp-builtins.def openmp: Implement allocate clause in omp lowering. 2020-11-12 21:38:04 +01:00
omp-expand.c OpenACC: Fix integer-type issue with collapse/tile [PR97880] 2020-11-27 11:18:35 +01:00
omp-expand.h
omp-general.c
omp-general.h
omp-low.c openmp: Add support for non-VLA {,first}private allocate on omp task 2020-11-14 01:46:16 +01:00
omp-low.h
omp-oacc-kernels-decompose.cc In 'gcc/omp-oacc-kernels-decompose.cc:flatten_binds', don't choke on empty GIMPLE sequence 2020-11-27 14:38:15 +01:00
omp-offload.c Decompose OpenACC 'kernels' constructs into parts, a sequence of compute constructs 2020-11-13 22:58:57 +01:00
omp-offload.h
omp-simd-clone.c PR target/96342 Change field "simdlen" into poly_uint64 2020-11-03 16:13:47 +00:00
omp-simd-clone.h
ONEWS
opt-functions.awk
opt-gather.awk
opt-include.awk
opt-problem.cc
opt-problem.h
opt-read.awk
opt-suggestions.c
opt-suggestions.h
optabs-libfuncs.c
optabs-libfuncs.h
optabs-query.c
optabs-query.h
optabs-tree.c Introduce can_vec_cmp_compare_p 2020-12-01 12:03:30 +01:00
optabs-tree.h
optabs.c expansion: Fix up infinite recursion due to double-word modulo optimization 2020-12-02 11:40:47 +01:00
optabs.def [2/3] [vect] Add widening add, subtract patterns 2020-11-19 11:49:59 +00:00
optabs.h expansion: Further improve double-word modulo, division and divmod [PR97459] 2020-12-02 11:40:47 +01:00
optc-gen.awk plugins: Allow plugins to handle global_options changes 2020-11-18 22:10:26 +01:00
optc-save-gen.awk options, lto: Optimize streaming of optimization nodes 2020-11-18 20:14:00 +01:00
opth-gen.awk
optinfo-emit-json.cc
optinfo-emit-json.h
optinfo.cc
optinfo.h
opts-common.c
opts-diagnostic.h
opts-global.c
opts.c libsanitizer: options: Add hwasan flags and argument parsing 2020-11-25 16:35:39 +00:00
opts.h plugins: Allow plugins to handle global_options changes 2020-11-18 22:10:26 +01:00
ordered-hash-map-tests.cc
ordered-hash-map.h
output.h Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
params.opt C++ Module parameters & timers 2020-12-01 11:39:38 -08:00
pass_manager.h
passes.c ipa: dump symtab to emergency dump file 2020-11-30 17:30:34 +01:00
passes.def Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
plugin.c Add analyzer plugin support and CPython GIL example 2020-11-30 14:32:28 -05:00
plugin.def Add analyzer plugin support and CPython GIL example 2020-11-30 14:32:28 -05:00
plugin.h
poly-int-types.h PR target/96342 Change field "simdlen" into poly_uint64 2020-11-03 16:13:47 +00:00
poly-int.h PR target/96342 Change field "simdlen" into poly_uint64 2020-11-03 16:13:47 +00:00
postreload-gcse.c
postreload.c
predict.c remove almost all users of gimple_expr_code 2020-11-13 11:35:01 +01:00
predict.def
predict.h
prefix.c
prefix.h
pretty-print.c
pretty-print.h
print-rtl-function.c
print-rtl.c
print-rtl.h
print-tree.c core: Rename DECL_IS_BUILTIN -> DECL_IS_UNDECLARED_BUILTIN 2020-11-06 10:50:51 -08:00
print-tree.h
profile-count.c
profile-count.h
profile.c
profile.h
range-op.cc ranger: Improve a % b operand ranges [PR91029] 2020-11-20 00:02:21 +01:00
range-op.h
range.cc
range.h
read-md.c
read-md.h
read-rtl-function.c
read-rtl-function.h
read-rtl.c
README.Portability
real.c
real.h
realmpfr.c
realmpfr.h
recog.c Don't extract memory from operand for normal memory constraint. 2020-11-04 13:06:32 +08:00
recog.h Add -fzero-call-used-regs option and zero_call_used_regs function attributes. 2020-10-30 20:41:38 +01:00
ree.c
reg-notes.def
reg-stack.c
regcprop.c
regcprop.h
reginfo.c
regrename.c
regrename.h
regs.h
regset.h
regstat.c
reload1.c
reload.c Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
reload.h
reorg.c
resource.c Add -fzero-call-used-regs option and zero_call_used_regs function attributes. 2020-10-30 20:41:38 +01:00
resource.h
rtl-error.c
rtl-error.h
rtl-iter.h
rtl-tests.c
rtl.c
rtl.def
rtl.h
rtlanal.c
rtlhash.c
rtlhash.h
rtlhooks-def.h
rtlhooks.c
rtx-vector-builder.c
rtx-vector-builder.h
run-rtl-passes.c
run-rtl-passes.h
sancov.c
sanitizer.def libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
sanopt.c libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
sbitmap.c
sbitmap.h
sched-deps.c
sched-ebb.c
sched-int.h
sched-rgn.c
sel-sched-dump.c
sel-sched-dump.h
sel-sched-ir.c
sel-sched-ir.h
sel-sched.c
sel-sched.h
selftest-diagnostic.c
selftest-diagnostic.h
selftest-rtl.c
selftest-rtl.h
selftest-run-tests.c
selftest.c
selftest.h Clean up irange self tests. 2020-11-09 16:29:47 +01:00
sese.c
sese.h
shortest-paths.h
shrink-wrap.c
shrink-wrap.h
signop.h
simplify-rtx.c
sort.cc
sparseset.c
sparseset.h
spellcheck-tree.c
spellcheck-tree.h
spellcheck.c
spellcheck.h
sreal.c
sreal.h
ssa-iterators.h
ssa.h
stab.def
stack-ptr-mod.c
statistics.c
statistics.h
stmt.c
stmt.h
stor-layout.c Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
stor-layout.h
store-motion.c
streamer-hooks.c
streamer-hooks.h
stringpool.c
stringpool.h
substring-locations.c
substring-locations.h
symbol-summary.h
symtab-clones.cc Fix copying of clone_info while reshaping clone tree. 2020-11-04 00:19:59 +01:00
symtab-clones.h Move clone_info to summary 2020-10-31 10:18:06 +01:00
symtab-thunks.cc Fix thunk info WRT PCH 2020-10-30 14:30:43 +01:00
symtab-thunks.h Fix freeing of thunk-info 2020-11-29 23:22:24 +01:00
symtab.c IPA: drop implicit_section again 2020-12-01 11:25:34 +01:00
sync-builtins.def
system.h system: Add WARN_UNUSED_RESULT 2020-11-12 11:24:23 -05:00
target-def.h
target-globals.c
target-globals.h
target-hooks-macros.h
target-insns.def
target.def libsanitizer: mid-end: Introduce stack variable handling for HWASAN 2020-11-25 16:38:06 +00:00
target.h
targhooks.c Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
targhooks.h libsanitizer: mid-end: Introduce stack variable handling for HWASAN 2020-11-25 16:38:06 +00:00
timevar.c
timevar.def C++ Module parameters & timers 2020-12-01 11:39:38 -08:00
timevar.h
toplev.c libsanitizer: Add hwasan pass and associated gimple changes 2020-11-25 16:39:07 +00:00
toplev.h
tracer.c
tracer.h
trans-mem.c Refactor copying decl section names 2020-11-10 11:44:15 -07:00
trans-mem.h
tree-affine.c
tree-affine.h
tree-call-cdce.c
tree-cfg.c Dump type attributes in dump_function_to_file. 2020-11-23 17:19:26 -07:00
tree-cfg.h
tree-cfgcleanup.c
tree-cfgcleanup.h Clean up loop-closed PHIs after loop finalize 2020-11-18 13:29:14 +08:00
tree-chrec.c
tree-chrec.h
tree-complex.c tree-optimization/97897 - complex lowering on abnormal edges 2020-11-19 09:57:38 +01:00
tree-core.h Add EAF_NODIRECTESCAPE flag 2020-11-25 20:51:26 +01:00
tree-data-ref.c
tree-data-ref.h
tree-dfa.c
tree-dfa.h
tree-diagnostic-path.cc Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
tree-diagnostic.c
tree-diagnostic.h
tree-dump.c
tree-dump.h
tree-eh.c
tree-eh.h
tree-emutls.c Refactor copying decl section names 2020-11-10 11:44:15 -07:00
tree-hash-traits.h
tree-hasher.h
tree-if-conv.c tree-opt: Fix segfault in tree-if-conv.c with -march=armv8.2-a+sve [PR97849] 2020-11-24 06:57:46 +05:30
tree-if-conv.h
tree-inline.c [2/3] [vect] Add widening add, subtract patterns 2020-11-19 11:49:59 +00:00
tree-inline.h
tree-into-ssa.c [PATCH] Implementation of asm goto outputs 2020-11-13 13:01:51 -05:00
tree-into-ssa.h
tree-iterator.c
tree-iterator.h
tree-loop-distribution.c
tree-nested.c
tree-nested.h
tree-nrv.c
tree-object-size.c
tree-object-size.h
tree-outof-ssa.c
tree-outof-ssa.h
tree-parloops.c
tree-parloops.h
tree-pass.h Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
tree-phinodes.c
tree-phinodes.h
tree-predcom.c
tree-pretty-print.c Add MODE_OPAQUE 2020-11-17 11:10:11 -05:00
tree-pretty-print.h
tree-profile.c
tree-scalar-evolution.c tree-ssanames: Allow non-SSA_NAME arguments to get_range_info 2020-11-27 11:38:31 +01:00
tree-scalar-evolution.h
tree-sra.c
tree-sra.h
tree-ssa-address.c
tree-ssa-address.h
tree-ssa-alias-compare.h Improve handling of memory operands in ipa-icf 2/4 2020-11-13 16:04:48 +01:00
tree-ssa-alias.c Use OEP_MATCH_SIDE_EFFECTS in compare_ao_refs 2020-11-21 21:34:02 +01:00
tree-ssa-alias.h Improve handling of memory operands in ipa-icf 2/4 2020-11-13 16:04:48 +01:00
tree-ssa-ccp.c middle-end, c++: Treat shifts by negative as undefined [PR96929] 2020-11-24 09:03:17 +01:00
tree-ssa-ccp.h
tree-ssa-coalesce.c
tree-ssa-coalesce.h
tree-ssa-copy.c
tree-ssa-dce.c openmp: Implement allocate clause in omp lowering. 2020-11-12 21:38:04 +01:00
tree-ssa-dce.h
tree-ssa-dom.c
tree-ssa-dom.h
tree-ssa-dse.c
tree-ssa-dse.h
tree-ssa-forwprop.c
tree-ssa-ifcombine.c
tree-ssa-live.c
tree-ssa-live.h
tree-ssa-loop-ch.c
tree-ssa-loop-im.c further optimize non-store-motion LIM 2020-11-16 15:21:24 +01:00
tree-ssa-loop-ivcanon.c pass: Run cleanup passes before SLP [PR96789] 2020-11-02 20:55:48 -06:00
tree-ssa-loop-ivopts.c
tree-ssa-loop-ivopts.h
tree-ssa-loop-manip.c
tree-ssa-loop-manip.h loops: Invoke lim after successful loop interchange 2020-11-13 15:35:18 +01:00
tree-ssa-loop-niter.c
tree-ssa-loop-niter.h
tree-ssa-loop-prefetch.c
tree-ssa-loop-split.c
tree-ssa-loop-unswitch.c
tree-ssa-loop.c Clean up loop-closed PHIs after loop finalize 2020-11-18 13:29:14 +08:00
tree-ssa-loop.h
tree-ssa-math-opts.c widening_mul: pattern recognize further forms of __builtin_add_overflow [PR95853] 2020-11-22 19:16:34 +01:00
tree-ssa-operands.c
tree-ssa-operands.h
tree-ssa-phiopt.c phiopt: Optimize x ? 1024 : 0 to (int) x << 10 [PR97690] 2020-11-04 12:15:28 +01:00
tree-ssa-phiprop.c
tree-ssa-pre.c tree-optimization/98024 - fix rnflow regression 2020-11-27 12:50:32 +01:00
tree-ssa-propagate.c tree-optimization/97901 - ICE propagating out LC PHIs 2020-11-19 11:35:45 +01:00
tree-ssa-propagate.h
tree-ssa-reassoc.c Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
tree-ssa-reassoc.h Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
tree-ssa-sccvn.c tree-optimization/97830 - fix compare of incomplete type size in VN 2020-11-16 09:33:04 +01:00
tree-ssa-sccvn.h make PRE constant value IDs negative 2020-11-06 15:41:04 +01:00
tree-ssa-scopedtables.c
tree-ssa-scopedtables.h
tree-ssa-sink.c
tree-ssa-strlen.c PR middle-end/97373 - missing warning on sprintf into allocated destination 2020-12-01 13:39:46 -07:00
tree-ssa-strlen.h PR middle-end/97373 - missing warning on sprintf into allocated destination 2020-12-01 13:39:46 -07:00
tree-ssa-structalias.c Skip EAF_UNUSED parameters in handle_pure_call 2020-11-29 16:31:47 +01:00
tree-ssa-tail-merge.c remove almost all users of gimple_expr_code 2020-11-13 11:35:01 +01:00
tree-ssa-ter.c
tree-ssa-ter.h
tree-ssa-threadbackward.c
tree-ssa-threadedge.c
tree-ssa-threadedge.h
tree-ssa-threadupdate.c
tree-ssa-threadupdate.h
tree-ssa-uncprop.c
tree-ssa-uninit.c PR middle-end/97840 - Bogus -Wmaybe-uninitialized passing an empty object to a function 2020-11-16 20:01:10 -07:00
tree-ssa.c Do not leak SSANAMES in lto streamer 2020-11-23 16:53:25 +01:00
tree-ssa.h Do not leak SSANAMES in lto streamer 2020-11-23 16:53:25 +01:00
tree-ssanames.c tree-ssanames: Allow non-SSA_NAME arguments to get_range_info 2020-11-27 11:38:31 +01:00
tree-ssanames.h
tree-stdarg.c
tree-stdarg.h
tree-streamer-in.c
tree-streamer-out.c Make ltrans type canonicals compatible with WPA ones 2020-11-17 15:38:13 +01:00
tree-streamer.c Additional small changes to support opaque modes 2020-11-21 07:37:06 -06:00
tree-streamer.h
tree-switch-conversion.c Prefer bit-test over the jump table. 2020-11-16 10:54:29 +01:00
tree-switch-conversion.h Add if-chain to switch conversion pass. 2020-12-01 11:43:25 +01:00
tree-tailcall.c
tree-vect-data-refs.c vect: Add a “very cheap” cost model 2020-11-19 16:49:37 +00:00
tree-vect-generic.c tree-optimization/98048 - fix vector lowering of ABSU_EXPR 2020-11-30 13:27:56 +01:00
tree-vect-loop-manip.c
tree-vect-loop.c guard maybe_set_vectorized_backedge_value calls 2020-12-02 12:39:32 +01:00
tree-vect-patterns.c [2/3] [vect] Add widening add, subtract patterns 2020-11-19 11:49:59 +00:00
tree-vect-slp.c tree-optimization/97630 - fix SLP cycle memory leak 2020-12-02 15:55:18 +01:00
tree-vect-stmts.c [3/3] [AArch64][vect] vec_widen_lshift pattern 2020-11-19 11:49:59 +00:00
tree-vector-builder.c
tree-vector-builder.h
tree-vectorizer.c tree-optimization/97630 - fix SLP cycle memory leak 2020-12-02 15:55:18 +01:00
tree-vectorizer.h tree-optimization/97630 - fix SLP cycle memory leak 2020-12-02 15:55:18 +01:00
tree-vrp.c tree-optimization/97812 - fix range query in VRP assert discovery 2020-11-13 12:24:54 +01:00
tree-vrp.h
tree.c PR middle-end/97595 - bogus -Wstringop-overflow due to DECL_SIZE_UNIT underreporting field size 2020-12-01 15:11:23 -07:00
tree.def [2/3] [vect] Add widening add, subtract patterns 2020-11-19 11:49:59 +00:00
tree.h PR middle-end/97595 - bogus -Wstringop-overflow due to DECL_SIZE_UNIT underreporting field size 2020-12-01 15:11:23 -07:00
treestruct.def
tristate.cc
tristate.h
tsan.c
tsan.h
tsystem.h
typeclass.h Additional small changes to support opaque modes 2020-11-21 07:37:06 -06:00
typed-splay-tree.c
typed-splay-tree.h
ubsan.c Clean up -Wformat-diag warnings (PR bootstrap/97622, PR bootstrap/94982) 2020-11-25 15:00:27 -07:00
ubsan.h
unique-ptr-tests.cc
valtrack.c
valtrack.h
value-prof.c
value-prof.h
value-query.cc Pass multi-range from range_query::value_* routines 2020-11-05 15:26:49 -05:00
value-query.h
value-range-equiv.cc
value-range-equiv.h
value-range.cc Early exit on VR_VARYING from irange::set. 2020-11-11 11:45:36 +01:00
value-range.h Normalize VARYING for -fstrict-enums. 2020-11-10 09:28:43 +01:00
var-tracking.c
varasm.c Use the section flag 'o' for __patchable_function_entries 2020-12-02 05:32:37 -08:00
varasm.h
varpool.c Fix copying of clone_info while reshaping clone tree. 2020-11-04 00:19:59 +01:00
vec-perm-indices.c
vec-perm-indices.h
vec.c
vec.h vec.h: Fix GCC build with -std=gnu++20 [PR98059] 2020-12-02 15:42:56 +01:00
vector-builder.h
version.c
version.h
vmsdbg.h
vmsdbgout.c
vr-values.c Remove duplicate vr_values::extract_range_builtin code. 2020-11-15 17:57:08 +01:00
vr-values.h Remove duplicate vr_values::extract_range_builtin code. 2020-11-15 17:57:08 +01:00
vtable-verify.c
vtable-verify.h
web.c
wide-int-bitmask.h
wide-int-print.cc
wide-int-print.h
wide-int.cc
wide-int.h Avoid typeless storage in wide-int 2020-10-29 16:44:48 +01:00
xcoff.h
xcoffout.c core: Rename DECL_IS_BUILTIN -> DECL_IS_UNDECLARED_BUILTIN 2020-11-06 10:50:51 -08:00
xcoffout.h

Copyright (C) 2000-2020 Free Software Foundation, Inc.

This file is intended to contain a few notes about writing C code
within GCC so that it compiles without error on the full range of
compilers GCC needs to be able to compile on.

The problem is that many ISO-standard constructs are not accepted by
either old or buggy compilers, and we keep getting bitten by them.
This knowledge until now has been sparsely spread around, so I
thought I'd collect it in one useful place.  Please add and correct
any problems as you come across them.

I'm going to start from a base of the ISO C90 standard, since that is
probably what most people code to naturally.  Obviously using
constructs introduced after that is not a good idea.

For the complete coding style conventions used in GCC, please read
http://gcc.gnu.org/codingconventions.html


String literals
---------------

Some compilers like MSVC++ have fairly low limits on the maximum
length of a string literal; 509 is the lowest we've come across.  You
may need to break up a long printf statement into many smaller ones.


Empty macro arguments
---------------------

ISO C (6.8.3 in the 1990 standard) specifies the following:

If (before argument substitution) any argument consists of no
preprocessing tokens, the behavior is undefined.

This was relaxed by ISO C99, but some older compilers emit an error,
so code like

#define foo(x, y) x y
foo (bar, )

needs to be coded in some other way.


Avoid unnecessary test before free
----------------------------------

Since SunOS 4 stopped being a reasonable portability target,
(which happened around 2007) there has been no need to guard
against "free (NULL)".  Thus, any guard like the following
constitutes a redundant test:

  if (P)
    free (P);

It is better to avoid the test.[*]
Instead, simply free P, regardless of whether it is NULL.

[*] However, if your profiling exposes a test like this in a
performance-critical loop, say where P is nearly always NULL, and
the cost of calling free on a NULL pointer would be prohibitively
high, consider using __builtin_expect, e.g., like this:

  if (__builtin_expect (ptr != NULL, 0))
    free (ptr);



Trigraphs
---------

You weren't going to use them anyway, but some otherwise ISO C
compliant compilers do not accept trigraphs.


Suffixes on Integer Constants
-----------------------------

You should never use a 'l' suffix on integer constants ('L' is fine),
since it can easily be confused with the number '1'.


			Common Coding Pitfalls
			======================

errno
-----

errno might be declared as a macro.


Implicit int
------------

In C, the 'int' keyword can often be omitted from type declarations.
For instance, you can write

  unsigned variable;

as shorthand for

  unsigned int variable;

There are several places where this can cause trouble.  First, suppose
'variable' is a long; then you might think

  (unsigned) variable

would convert it to unsigned long.  It does not.  It converts to
unsigned int.  This mostly causes problems on 64-bit platforms, where
long and int are not the same size.

Second, if you write a function definition with no return type at
all:

  operate (int a, int b)
  {
    ...
  }

that function is expected to return int, *not* void.  GCC will warn
about this.

Implicit function declarations always have return type int.  So if you
correct the above definition to

  void
  operate (int a, int b)
  ...

but operate() is called above its definition, you will get an error
about a "type mismatch with previous implicit declaration".  The cure
is to prototype all functions at the top of the file, or in an
appropriate header.

Char vs unsigned char vs int
----------------------------

In C, unqualified 'char' may be either signed or unsigned; it is the
implementation's choice.  When you are processing 7-bit ASCII, it does
not matter.  But when your program must handle arbitrary binary data,
or fully 8-bit character sets, you have a problem.  The most obvious
issue is if you have a look-up table indexed by characters.

For instance, the character '\341' in ISO Latin 1 is SMALL LETTER A
WITH ACUTE ACCENT.  In the proper locale, isalpha('\341') will be
true.  But if you read '\341' from a file and store it in a plain
char, isalpha(c) may look up character 225, or it may look up
character -31.  And the ctype table has no entry at offset -31, so
your program will crash.  (If you're lucky.)

It is wise to use unsigned char everywhere you possibly can.  This
avoids all these problems.  Unfortunately, the routines in <string.h>
take plain char arguments, so you have to remember to cast them back
and forth - or avoid the use of strxxx() functions, which is probably
a good idea anyway.

Another common mistake is to use either char or unsigned char to
receive the result of getc() or related stdio functions.  They may
return EOF, which is outside the range of values representable by
char.  If you use char, some legal character value may be confused
with EOF, such as '\377' (SMALL LETTER Y WITH UMLAUT, in Latin-1).
The correct choice is int.

A more subtle version of the same mistake might look like this:

  unsigned char pushback[NPUSHBACK];
  int pbidx;
  #define unget(c) (assert(pbidx < NPUSHBACK), pushback[pbidx++] = (c))
  #define get(c) (pbidx ? pushback[--pbidx] : getchar())
  ...
  unget(EOF);

which will mysteriously turn a pushed-back EOF into a SMALL LETTER Y
WITH UMLAUT.


Other common pitfalls
---------------------

o Expecting 'plain' char to be either sign or unsigned extending.

o Shifting an item by a negative amount or by greater than or equal to
  the number of bits in a type (expecting shifts by 32 to be sensible
  has caused quite a number of bugs at least in the early days).

o Expecting ints shifted right to be sign extended.

o Modifying the same value twice within one sequence point.

o Host vs. target floating point representation, including emitting NaNs
  and Infinities in a form that the assembler handles.

o qsort being an unstable sort function (unstable in the sense that
  multiple items that sort the same may be sorted in different orders
  by different qsort functions).

o Passing incorrect types to fprintf and friends.

o Adding a function declaration for a module declared in another file to
  a .c file instead of to a .h file.