diff options
author | Brian Gesiak <modocache@gmail.com> | 2018-04-05 14:08:16 +0000 |
---|---|---|
committer | Brian Gesiak <modocache@gmail.com> | 2018-04-05 14:08:16 +0000 |
commit | 06291073053b62f4dfbc522de247d29f38471d45 (patch) | |
tree | 9c68d4bf4385a4338132d6693209ecaf56621852 | |
parent | 8fd4be3ecc6fbb6ae5c79c5de83099d6c31c6449 (diff) | |
download | bcm5719-llvm-06291073053b62f4dfbc522de247d29f38471d45.tar.gz bcm5719-llvm-06291073053b62f4dfbc522de247d29f38471d45.zip |
[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
llvm-svn: 329285
-rw-r--r-- | llvm/docs/Lexicon.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst index 0021bf8e00b..981aaea961a 100644 --- a/llvm/docs/Lexicon.rst +++ b/llvm/docs/Lexicon.rst @@ -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). |