diff options
author | John Criswell <criswell@uiuc.edu> | 2004-03-12 20:42:16 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2004-03-12 20:42:16 +0000 |
commit | faba462a9a3bec1f1292dbe4443ff1d73b774fe4 (patch) | |
tree | 72ea773efbc27d75e52cdb85e4cc92c83d384f81 /llvm/docs/HowToSubmitABug.html | |
parent | 64f13ab7533d10fb08cf4d6dcce4d3a1b7cc055f (diff) | |
download | bcm5719-llvm-faba462a9a3bec1f1292dbe4443ff1d73b774fe4.tar.gz bcm5719-llvm-faba462a9a3bec1f1292dbe4443ff1d73b774fe4.zip |
Added minor information on C++.
llvm-svn: 12341
Diffstat (limited to 'llvm/docs/HowToSubmitABug.html')
-rw-r--r-- | llvm/docs/HowToSubmitABug.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/docs/HowToSubmitABug.html b/llvm/docs/HowToSubmitABug.html index 28def13d086..84d7b8ba108 100644 --- a/llvm/docs/HowToSubmitABug.html +++ b/llvm/docs/HowToSubmitABug.html @@ -96,12 +96,14 @@ buggy or if it's one of the LLVM tools that has problems.</p> <tt><b>gccas</b></tt>, or <tt><b>gccld</b></tt>), run the <tt><b>llvm-gcc</b></tt> command line as you were when the crash occurred, but add a <tt>-v</tt> option to the command line. The compiler will print out a -bunch of stuff, and should end with telling you that one of <tt><b>cc1</b></tt>, -<tt><b>gccas</b></tt>, or <tt><b>gccld</b></tt> crashed.</p> +bunch of stuff, and should end with telling you that one of +<tt><b>cc1</b>/<b>cc1plus</b></tt>, <tt><b>gccas</b></tt>, or +<tt><b>gccld</b></tt> crashed.</p> <ul> - <li>If <tt><b>cc1</b></tt> crashed, you found a problem with the front-end. + <li>If <tt><b>cc1</b></tt> or <tt><b>cc1plus</b></tt> crashed, you found a + problem with the front-end. Jump ahead to the section on <a href="#front-end">front-end bugs</a>.</li> <li>If <tt><b>gccas</b></tt> crashed, you found a bug in <a href="#gccas">one |