This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
About building conditional expressions
- From: "Ferad Zyulkyarov" <feradz at gmail dot com>
- To: gcc at gcc dot gnu dot org
- Date: Tue, 23 Jan 2007 14:25:15 +0100
- Subject: About building conditional expressions
Hi,
In the old references there is a function "build" that is used for
building tree nodes. Using this function one can build a conditional
expression as follows:
build(EQ_EXPR, integet_type_node, left, rith);
which is left == right
But, as I noticed this function "build" is not maintained (used) by
gcc any more. Instead build, what else may I use to create a
conditional expression node?
Thanks, for your advices.
--
Ferad Zyulkyarov