You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2007/12/04 12:32:17 UTC

svn commit: r600894 - /harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32InstCodeSelector.cpp

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();