• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/share/doc/arm-arm-none-eabi/html/gcc/
1<html lang="en">
2<head>
3<title>Bug Criteria - Using the GNU Compiler Collection (GCC)</title>
4<meta http-equiv="Content-Type" content="text/html">
5<meta name="description" content="Using the GNU Compiler Collection (GCC)">
6<meta name="generator" content="makeinfo 4.13">
7<link title="Top" rel="start" href="index.html#Top">
8<link rel="up" href="Bugs.html#Bugs" title="Bugs">
9<link rel="next" href="Bug-Reporting.html#Bug-Reporting" title="Bug Reporting">
10<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
11<!--
12Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
131998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
142010 Free Software Foundation, Inc.
15
16Permission is granted to copy, distribute and/or modify this document
17under the terms of the GNU Free Documentation License, Version 1.3 or
18any later version published by the Free Software Foundation; with the
19Invariant Sections being ``Funding Free Software'', the Front-Cover
20Texts being (a) (see below), and with the Back-Cover Texts being (b)
21(see below).  A copy of the license is included in the section entitled
22``GNU Free Documentation License''.
23
24(a) The FSF's Front-Cover Text is:
25
26     A GNU Manual
27
28(b) The FSF's Back-Cover Text is:
29
30     You have freedom to copy and modify this GNU Manual, like GNU
31     software.  Copies published by the Free Software Foundation raise
32     funds for GNU development.-->
33<meta http-equiv="Content-Style-Type" content="text/css">
34<style type="text/css"><!--
35  pre.display { font-family:inherit }
36  pre.format  { font-family:inherit }
37  pre.smalldisplay { font-family:inherit; font-size:smaller }
38  pre.smallformat  { font-family:inherit; font-size:smaller }
39  pre.smallexample { font-size:smaller }
40  pre.smalllisp    { font-size:smaller }
41  span.sc    { font-variant:small-caps }
42  span.roman { font-family:serif; font-weight:normal; } 
43  span.sansserif { font-family:sans-serif; font-weight:normal; } 
44--></style>
45<link rel="stylesheet" type="text/css" href="../cs.css">
46</head>
47<body>
48<div class="node">
49<a name="Bug-Criteria"></a>
50<p>
51Next:&nbsp;<a rel="next" accesskey="n" href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a>,
52Up:&nbsp;<a rel="up" accesskey="u" href="Bugs.html#Bugs">Bugs</a>
53<hr>
54</div>
55
56<h3 class="section">12.1 Have You Found a Bug?</h3>
57
58<p><a name="index-bug-criteria-3353"></a>
59If you are not sure whether you have found a bug, here are some guidelines:
60
61     
62<a name="index-fatal-signal-3354"></a>
63<a name="index-core-dump-3355"></a>
64<ul><li>If the compiler gets a fatal signal, for any input whatever, that is a
65compiler bug.  Reliable compilers never crash.
66
67     <p><a name="index-invalid-assembly-code-3356"></a><a name="index-assembly-code_002c-invalid-3357"></a><li>If the compiler produces invalid assembly code, for any input whatever
68(except an <code>asm</code> statement), that is a compiler bug, unless the
69compiler reports errors (not just warnings) which would ordinarily
70prevent the assembler from being run.
71
72     <p><a name="index-undefined-behavior-3358"></a><a name="index-undefined-function-value-3359"></a><a name="index-increment-operators-3360"></a><li>If the compiler produces valid assembly code that does not correctly
73execute the input source code, that is a compiler bug.
74
75     <p>However, you must double-check to make sure, because you may have a
76program whose behavior is undefined, which happened by chance to give
77the desired results with another C or C++ compiler.
78
79     <p>For example, in many nonoptimizing compilers, you can write &lsquo;<samp><span class="samp">x;</span></samp>&rsquo;
80at the end of a function instead of &lsquo;<samp><span class="samp">return x;</span></samp>&rsquo;, with the same
81results.  But the value of the function is undefined if <code>return</code>
82is omitted; it is not a bug when GCC produces different results.
83
84     <p>Problems often result from expressions with two increment operators,
85as in <code>f (*p++, *p++)</code>.  Your previous compiler might have
86interpreted that expression the way you intended; GCC might
87interpret it another way.  Neither compiler is wrong.  The bug is
88in your code.
89
90     <p>After you have localized the error to a single source line, it should
91be easy to check for these things.  If your program is correct and
92well defined, you have found a compiler bug.
93
94     <li>If the compiler produces an error message for valid input, that is a
95compiler bug.
96
97     <p><a name="index-invalid-input-3361"></a><li>If the compiler does not produce an error message for invalid input,
98that is a compiler bug.  However, you should note that your idea of
99&ldquo;invalid input&rdquo; might be someone else's idea of &ldquo;an extension&rdquo; or
100&ldquo;support for traditional practice&rdquo;.
101
102     <li>If you are an experienced user of one of the languages GCC supports, your
103suggestions for improvement of GCC are welcome in any case. 
104</ul>
105
106 </body></html>
107
108