Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 49813 invoked from network); 4 Dec 2007 11:32:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Dec 2007 11:32:42 -0000 Received: (qmail 38610 invoked by uid 500); 4 Dec 2007 11:32:30 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 38590 invoked by uid 500); 4 Dec 2007 11:32:30 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 38576 invoked by uid 99); 4 Dec 2007 11:32:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Dec 2007 03:32:30 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Dec 2007 11:32:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B0DA81A9832; Tue, 4 Dec 2007 03:32:18 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r600894 - /harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp Date: Tue, 04 Dec 2007 11:32:17 -0000 To: commits@harmony.apache.org From: varlax@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071204113218.B0DA81A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: varlax Date: Tue Dec 4 03:32:16 2007 New Revision: 600894 URL: http://svn.apache.org/viewvc?rev=600894&view=rev Log: typo fixed Modified: harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp Modified: harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp?rev=600894&r1=600893&r2=600894&view=diff ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp (original) +++ harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp Tue Dec 4 03:32:16 2007 @@ -2648,8 +2648,8 @@ Opnd* stride = (Opnd*) args[2]; assert (distance->isPlacedIn(OpndKind_Imm) && stride->isPlacedIn(OpndKind_Imm)); - assert(fits32(distance->getImmValue())); - assert(fits32(stride->getImmValue())); + assert(fit32(distance->getImmValue())); + assert(fit32(stride->getImmValue())); int dist = (int)distance->getImmValue(); int strd = (int)stride->getImmValue();