| 976 | // |
| 977 | |
| 978 | static gpre_nod* make_and( gpre_nod* node1, gpre_nod* node2) |
| 979 | { |
| 980 | if (!node1) |
| 981 | return node2; |
| 982 | |
| 983 | if (!node2) |
| 984 | return NULL; |
| 985 | |
| 986 | return MSC_binary(nod_and, node1, node2); |
| 987 | } |
| 988 | |
| 989 | |
| 990 | //____________________________________________________________ |
no test coverage detected