From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1324 invoked by alias); 15 May 2009 21:40:26 -0000 Received: (qmail 1315 invoked by uid 22791); 15 May 2009 21:40:25 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 15 May 2009 21:40:20 +0000 Received: from spaceape7.eur.corp.google.com (spaceape7.eur.corp.google.com [172.28.16.141]) by smtp-out.google.com with ESMTP id n4FLeHb7025583 for ; Fri, 15 May 2009 22:40:17 +0100 Received: from bwz9 (bwz9.prod.google.com [10.188.26.9]) by spaceape7.eur.corp.google.com with ESMTP id n4FLeFip027711 for ; Fri, 15 May 2009 14:40:16 -0700 Received: by bwz9 with SMTP id 9so2142565bwz.43 for ; Fri, 15 May 2009 14:40:15 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.56.13 with SMTP id w13mr3761898bkg.131.1242423615414; Fri, 15 May 2009 14:40:15 -0700 (PDT) In-Reply-To: <861076.29856.qm@web111612.mail.gq1.yahoo.com> References: <861076.29856.qm@web111612.mail.gq1.yahoo.com> Date: Fri, 15 May 2009 22:19:00 -0000 Message-ID: Subject: Re: 4.4 API changes From: Diego Novillo To: Jamie Prescott Cc: gcc@gcc.gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2009-05/txt/msg00409.txt.bz2 On Fri, May 15, 2009 at 17:23, Jamie Prescott wrote: > I managed to migrate my code to 4.4, but I've some code I cannot figure o= ut > how to translate. > Before, I was building the TRUE and FALSE =C2=A0instruction list using gi= mplify_and_add(), > and then a: > > build3(COND_EXPR, void_type_node, cond, a_case, b_case); Are you trying to generate gimple or generic? Both are different data structures now. Diego.