[llvm] r329285 - [Lexicon] Add "ICE", internal compiler error

Brian Gesiak via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 5 07:08:16 PDT 2018


Author: modocache
Date: Thu Apr  5 07:08:16 2018
New Revision: 329285

URL: http://llvm.org/viewvc/llvm-project?rev=329285&view=rev
Log:
[Lexicon] Add "ICE", internal compiler error

Test Plan:
1. `ninja docs-llvm-html`
2. Confirm that the rendered docs HTML contains the new "ICE" entry


Modified:
    llvm/trunk/docs/Lexicon.rst

Modified: llvm/trunk/docs/Lexicon.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Lexicon.rst?rev=329285&r1=329284&r2=329285&view=diff
==============================================================================
--- llvm/trunk/docs/Lexicon.rst (original)
+++ llvm/trunk/docs/Lexicon.rst Thu Apr  5 07:08:16 2018
@@ -133,6 +133,12 @@ H
 I
 -
 
+**ICE**
+    Internal Compiler Error. This abbreviation is used to describe errors
+    that occur in LLVM or Clang as they are compiling source code. For example,
+    if a valid C++ source program were to trigger an assert in Clang when
+    compiled, that could be referred to as an "ICE".
+
 **IPA**
     Inter-Procedural Analysis. Refers to any variety of code analysis that
     occurs between procedures, functions or compilation units (modules).




More information about the llvm-commits mailing list