From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22802 invoked by alias); 4 Aug 2009 17:51:38 -0000 Received: (qmail 22793 invoked by uid 22791); 4 Aug 2009 17:51:38 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 04 Aug 2009 17:51:32 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n74Hio7n013153; Tue, 4 Aug 2009 13:44:50 -0400 Received: from fche.csb (vpn-225-185.phx2.redhat.com [10.3.225.185]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n74HinG0025196; Tue, 4 Aug 2009 13:44:49 -0400 Received: by fche.csb (Postfix, from userid 2569) id 054F358464; Tue, 4 Aug 2009 13:44:48 -0400 (EDT) Date: Tue, 04 Aug 2009 17:51:00 -0000 From: "Frank Ch. Eigler" To: Joseph A Cc: cgen@sourceware.org Subject: Re: Delayed Memory Writes Message-ID: <20090804174448.GG12318@redhat.com> References: <24813100.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <24813100.post@talk.nabble.com> User-Agent: Mutt/1.4.2.2i X-IsSubscribed: yes Mailing-List: contact cgen-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sourceware.org X-SW-Source: 2009-q3/txt/msg00047.txt.bz2 Hi - > When I write a line of code such as > (set (delay 2 (mem SI r)) a) > or > (set (delay 2 (reg SI h-memory r)) a) > I get the error "ERROR: Unbound variable: set". Is there some special > notation for delayed memory stores, or a different way to accomplish this? It nests the other way: (delay 1 (set FOO BAR)) - FChE