forked from OSchip/llvm-project
7d028298ce
There is a pattern where evaluation order is used as control flow. This patch special-cases a commonly occuring version of this pattern. Before: Aaaaa *aaa = nullptr; // ... aaa &&aaa->f(); After: Aaaaa *aaa = nullptr; // ... aaa && aaa->f(); llvm-svn: 210017 |
||
---|---|---|
.. | ||
AST | ||
ASTMatchers | ||
Basic | ||
Driver | ||
Format | ||
Frontend | ||
Lex | ||
Sema | ||
Tooling | ||
libclang | ||
CMakeLists.txt | ||
Makefile |