[docs] Break long (>80) line. NFC

llvm-svn: 372326
This commit is contained in:
Francesco Petrogalli 2019-09-19 14:19:32 +00:00
parent ed9104c3f8
commit cde4f727ff
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ surprisingly small changes in the source IR can have a large effect on the
generated code.
Beyond the specific items on the list below, it's worth noting that the most
mature frontend for LLVM is Clang. As a result, the further your IR gets from what Clang might emit, the less likely it is to be effectively optimized. It
mature frontend for LLVM is Clang. As a result, the further your IR gets from
what Clang might emit, the less likely it is to be effectively optimized. It
can often be useful to write a quick C program with the semantics you're trying
to model and see what decisions Clang's IRGen makes about what IR to emit.
Studying Clang's CodeGen directory can also be a good source of ideas. Note