Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In C code COND_EXPR used like IF_STMT in C++.
|
|
|
|
For workaround building issues was added file custom/fixed-cp-tree.h
|
|
|
|
|
|
|
|
This allow check expressions like: expr ? expr : expr
|
|
|
|
Example: if (!a && a->b)
if (a || a->b)
|
|
|
|
Example: if (a && a->b)
if (!a || a->b)
|
|
|
|
|
|
|
|
|
|
|
|
This mean test1 -> test01, etc
|
|
|
|
|
|
|
|
usage.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|